Submission #927629
Source Code Expand
Copy
#include <iostream> #include <string> #include <algorithm> #include <map> #include <vector> using namespace std; #define debug(x) cout<<#x<<": "<<x<<endl #define rep(i,a,b) for(int i=a;i<b;i++) #define PB push_back #define putn(x,n) cout<< fixed<< setprecision(n)<< x << endl; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(false); int a, b, c,n=0; cin >> a >> b >> c; if (a == b){ if (a == c)n = 1; else n = 2; } else if (b == c){ n = 2; } else if (c == a){ n = 2; } else n = 3; cout << n << endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | A - AtCoDeer and Paint Cans |
User | imnotchestnut |
Language | C++14 (GCC 5.4.1) |
Score | 100 |
Code Size | 590 Byte |
Status | AC |
Exec Time | 3 ms |
Memory | 256 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 | 3 ms | 256 KB |
0_001.txt | AC | 3 ms | 256 KB |
1_002.txt | AC | 3 ms | 256 KB |
1_003.txt | AC | 3 ms | 256 KB |
1_004.txt | AC | 2 ms | 256 KB |
1_005.txt | AC | 3 ms | 256 KB |