結果

問題 No.1934 Four Fruits
ユーザー ruthenruthen
提出日時 2022-05-13 21:26:17
言語 C++17
(gcc 12.2.0 + boost 1.81.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 2,767 ms
実行使用メモリ 10,348 KB
最終ジャッジ日時 2023-02-21 13:06:59
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,272 KB
testcase_01 AC 2 ms
7,656 KB
testcase_02 AC 1 ms
10,248 KB
testcase_03 AC 1 ms
7,592 KB
testcase_04 AC 2 ms
7,652 KB
testcase_05 AC 1 ms
7,724 KB
testcase_06 AC 1 ms
10,256 KB
testcase_07 AC 1 ms
10,348 KB
testcase_08 AC 2 ms
10,260 KB
testcase_09 AC 2 ms
10,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int a, b, c;
    cin >> a >> b >> c;
    cout << (a ^ b ^ c) << '\n';
    return 0;
}
0