結果
問題 | No.1934 Four Fruits |
ユーザー |
![]() |
提出日時 | 2022-05-13 21:21:26 |
言語 | C++17 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 472 bytes |
コンパイル時間 | 1,820 ms |
使用メモリ | 6,320 KB |
最終ジャッジ日時 | 2023-02-21 12:54:32 |
合計ジャッジ時間 | 2,586 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge12 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,320 KB |
testcase_01 | AC | 2 ms
6,268 KB |
testcase_02 | AC | 2 ms
6,168 KB |
testcase_03 | AC | 2 ms
6,272 KB |
testcase_04 | AC | 2 ms
6,264 KB |
testcase_05 | AC | 1 ms
6,260 KB |
testcase_06 | AC | 1 ms
6,164 KB |
testcase_07 | AC | 1 ms
6,176 KB |
testcase_08 | AC | 2 ms
6,272 KB |
testcase_09 | AC | 1 ms
6,184 KB |
ソースコード
#include <bits/stdc++.h> #define be(v) (v).begin(),(v).end() #define pb(q) push_back(q) #define rep(i, n) for(int i=0;i<n;i++) #define all(i, v) for(auto& i : v) typedef long long ll; using namespace std; const ll mod=1000000007, INF=(1LL<<60); #define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int a, b, c; cin >> a >> b >> c; cout << (a^b^c) << endl; return 0; }