Submission #6898

# Submission time Handle Problem Language Result Execution time Memory
6898 2014-07-09T10:05:38 Z kipa00 MathWorlds (YDX13_mathworlds) C++
0 / 1
0 ms 1088 KB
#include <cstdio>
#define I(g, s) if(b g c==d)a+=s
#define C(g, s) case s: printf(#g "\n"); break

int main() {
	int a = 0;
	int idx;
	int b, c, d;
	scanf("%d %d %d", &b, &c, &d);
	I(+, 1);
	I(-, 2);
	I(*, 4);
	if (b % c == 0) I(/, 8);
	switch (a) {
	C(+, 1);
	C(-, 2);
	C(*, 4);
	C(/, 8);
	default: printf("Invalid\n"); break;
	}
	return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 1088 KB Output is correct
2 Correct 0 ms 1088 KB Output is correct
3 Runtime error 0 ms 1084 KB SIGFPE Floating point exception
4 Halted 0 ms 0 KB -