Submission #929003
Source Code Expand
Copy
#include <stdio.h> #include <stdlib.h> int main(){ int a, b, c; if(scanf("%d %d %d", &a, &b, &c) < 1) { fprintf(stderr, "error: ill-formed fraction.\n"); exit(1); } int kind = 3; if(a == b){ kind--; } if(b == c){ kind--; } if(a == c){ kind--; } if(a == b && b == c && a == c){ kind++; } printf("%d", kind); return 0; }
Submission Info
Submission Time | |
---|---|
Task | A - AtCoDeer and Paint Cans |
User | kobaryo222 |
Language | C (GCC 5.4.1) |
Score | 100 |
Code Size | 448 Byte |
Status | AC |
Exec Time | 3 ms |
Memory | 128 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | 0_000.txt, 0_001.txt |
All | 0_000.txt, 0_001.txt, 1_002.txt, 1_003.txt, 1_004.txt, 1_005.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
0_000.txt | AC | 1 ms | 128 KB |
0_001.txt | AC | 1 ms | 128 KB |
1_002.txt | AC | 1 ms | 128 KB |
1_003.txt | AC | 3 ms | 128 KB |
1_004.txt | AC | 1 ms | 128 KB |
1_005.txt | AC | 1 ms | 128 KB |