結果
問題 | No.1934 Four Fruits |
ユーザー |
![]() |
提出日時 | 2022-05-13 21:21:16 |
言語 | C++17 (gcc 11.2.0 + boost 1.78.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 518 bytes |
コンパイル時間 | 748 ms |
使用メモリ | 9,708 KB |
最終ジャッジ日時 | 2023-02-21 12:53:53 |
合計ジャッジ時間 | 1,663 ms |
ジャッジサーバーID (参考情報) |
judge15 / judge11 |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
9,708 KB |
testcase_01 | AC | 2 ms
7,572 KB |
testcase_02 | AC | 2 ms
7,600 KB |
testcase_03 | AC | 1 ms
7,580 KB |
testcase_04 | AC | 2 ms
7,596 KB |
testcase_05 | AC | 1 ms
7,576 KB |
testcase_06 | AC | 1 ms
7,652 KB |
testcase_07 | AC | 2 ms
7,656 KB |
testcase_08 | AC | 1 ms
7,576 KB |
testcase_09 | AC | 1 ms
7,660 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <cmath> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(int)(n); i++) int main(){ int a,b,c; cin >> a >> b >> c; int ans = a^b^c; cout << ans << endl; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;