結果

問題 No.1934 Four Fruits
ユーザー googol_S0googol_S0
提出日時 2022-05-13 21:20:54
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 278 ms
使用メモリ 75,752 KB
最終ジャッジ日時 2023-02-21 12:53:04
合計ジャッジ時間 2,116 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 88 ms
75,696 KB
testcase_01 AC 88 ms
75,452 KB
testcase_02 AC 87 ms
75,652 KB
testcase_03 AC 87 ms
75,404 KB
testcase_04 AC 87 ms
75,752 KB
testcase_05 AC 89 ms
75,388 KB
testcase_06 AC 88 ms
75,724 KB
testcase_07 AC 88 ms
75,428 KB
testcase_08 AC 87 ms
75,496 KB
testcase_09 AC 87 ms
75,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C=map(int,input().split())
if A==B and B==C:
  print(A)
elif A==B or B==C or A==C:
  print(A^B^C)
else:
  print(A^B^C)
0