# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
70460 | 2018-08-23T01:03:48 Z | cepiloth | if-else 문 1 (BSC_0_8) | C++11 | 3 ms | 608 KB |
#include <iostream> #include <string> using namespace std; int main() { int d; cin >> d; if(d==0) cout << "zero"; else cout << "nonezero"; return 0; }
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 608 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |