# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
117471 | 2019-06-16T03:04:26 Z | maho04 | if-else 문 1 (BSC_0_8) | C++14 | 2 ms | 384 KB |
#include <iostream> using namespace std; int main(){ int a; cin >> a; if(a==0) { cout<<("zero"); } else { cout<<("nozero"); } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |