# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
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; }
# | 결과 | 실행 시간 | 메모리 | 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 | - |