Submission #6980764
Source Code Expand
Copy
// Gaurav Aggarwal #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int,int> pii; typedef pair<ll,ll> pll; typedef vector<pii > vii; typedef vector<pll > vll; #define pb push_back #define mp make_pair #define mod 1000000007 #define F first #define S second #define p(s) cout<<(s)<<endl #define p2(s, t) cout << (s) << " " << (t) << endl #define For(i, a, b) for(__typeof (a) i=a; i<=b; i++) #define inp_arr(a,n) for(__typeof (n) i=0; i<n; ++i) {cin>>a[i];} #define debug_arr(a,n) {{for(__typeof (n) i=0; i<n; ++i) {cout<<a[i]<<" ";}cout<<"\n";}} ll power(ll x, ll y) { ll res = 1; while (y > 0) { if (y & 1) res = (res*x)%mod; y = y>>1; x = (x*x)%mod; } return res%mod; } int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); // #ifndef ONLINE_JUDGE // freopen("input.txt", "r", stdin); // freopen("out.txt", "w", stdout); // #endif int a; string s; cin>>a>>s; if(a < 3200) { cout<<"red\n"; } else cout<<s<<"\n"; return 0; }
Submission Info
Submission Time | |
---|---|
Task | A - Red or Not |
User | guvi007 |
Language | C++14 (GCC 5.4.1) |
Score | 100 |
Code Size | 1223 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 256 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | a01, a02, a03 |
All | a01, a02, a03, b04, b05, b06, b07, b08, b09 |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
a01 | AC | 1 ms | 256 KB |
a02 | AC | 1 ms | 256 KB |
a03 | AC | 1 ms | 256 KB |
b04 | AC | 1 ms | 256 KB |
b05 | AC | 1 ms | 256 KB |
b06 | AC | 1 ms | 256 KB |
b07 | AC | 1 ms | 256 KB |
b08 | AC | 1 ms | 256 KB |
b09 | AC | 1 ms | 256 KB |