結果
問題 | No.1934 Four Fruits |
ユーザー | orange navle |
提出日時 | 2022-05-13 21:28:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,943 bytes |
コンパイル時間 | 2,161 ms |
コンパイル使用メモリ | 212,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 01:00:23 |
合計ジャッジ時間 | 2,653 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long LL; typedef long double LD; #define rep(i,n) for(LL i=0;i<(n);i++) template <class T> void output(vector<T> &data){ rep(i,data.size()){ cout << data.at(i) << " "; } cout << endl; } template<> void output(vector<string> &data){ rep(i,data.size()){ cout << data.at(i) << endl; } } template <class T> void output(vector<vector<T>> &data){ rep(i,data.size()){ rep(j,data.at(i).size()){ cout << data.at(i).at(j) << " "; } cout << endl; } } template <> void output(vector<vector<bool>> &data){ rep(i,data.size()){ rep(j,data.at(i).size()){ if(data.at(i).at(j)){ cout << "*"; } else{ cout << "-"; } } cout << endl; } } template<class T> void input(vector<T> &data,LL n){ rep(i,n){ LL a; cin >> a; data.push_back(a); } } template<> void input(vector<string> &data,LL n){ rep(i,n){ string s; cin >> s; data.push_back(s); } } template<class T> void input(vector<vector<T>> &data,LL h, LL w){ rep(i,h){ vector<T> add; rep(j,w){ T a; cin >> a; add.push_back(a); } data.push_back(add); } } int main(){ set<int> data; rep(i,3){ int a; cin >> a; data.insert(a); } int ans = 0; if(data.size() == 1){ auto itr = data.begin(); ans = *itr; } else if(data.size() == 2){ rep(i,4){ if(data.count(i) == 1){ ans = i; break; } } } else{ rep(i,4){ if(data.count(i) == 0){ ans = i; break; } } } cout << ans << endl; return 0; }