結果
| 問題 | No.1934 Four Fruits |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-19 20:38:10 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 63 ms / 2,000 ms |
| + 242µs | |
| コード長 | 329 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-08-30 16:23:50 |
| 合計ジャッジ時間 | 1,941 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
a, b, c=map(int,input().split())
if a==b and b==c:
print(a)
elif (a==b and b!=c)==True :
print(c)
elif (c==b and b!=a)==True :
print(a)
elif (c==a and c!=b)==True:
print(b)
else:
lista=[0,1,2,3]
lista.pop(lista.index(a))
lista.pop(lista.index(b))
lista.pop(lista.index(c))
print(lista[0])