# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19137 | 2016-02-18T17:21:15 Z | eaststar | MathWorlds (YDX13_mathworlds) | C++14 | 0 ms | 1084 KB |
#include <stdio.h> int main(){ long long x,y,z,t=0; char c; scanf("%lld%lld%lld",&x,&y,&z); if(x+y==z)c='+',++t; if(x-y==z)c='-',++t; if(x*y==z)c='*',++t; if(x%y==0&&x/y==z)c='/',++t; if(t==1)putchar(c); else puts("Invalid"); return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 1084 KB | Output is correct |
2 | Correct | 0 ms | 1084 KB | Output is correct |
3 | Runtime error | 0 ms | 1080 KB | SIGFPE Floating point exception |
4 | Halted | 0 ms | 0 KB | - |