結果

問題 No.1934 Four Fruits
ユーザー pypypymipypypymi
提出日時 2022-05-16 10:26:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-09-14 02:16:56
合計ジャッジ時間 1,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,364 KB
testcase_01 AC 39 ms
52,200 KB
testcase_02 AC 39 ms
52,076 KB
testcase_03 AC 38 ms
52,504 KB
testcase_04 AC 39 ms
52,356 KB
testcase_05 AC 39 ms
52,516 KB
testcase_06 AC 39 ms
53,244 KB
testcase_07 AC 39 ms
53,300 KB
testcase_08 AC 38 ms
52,700 KB
testcase_09 AC 38 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 4 つのフルーツはすべて同じ種類である
# 4 つのフルーツは 2 種類のフルーツ 2 つずつからなる
# 4 つのフルーツの種類はすべて異なる

abc = list(map(int,input().split()))

if len(set(abc))==3:
    print(list(set([0,1,2,3])-set(abc))[0])
elif len(set(abc))==2:
    if abc[0]==abc[1]:print(abc[2])
    elif abc[0]==abc[2]:print(abc[1])
    else:print(abc[0])
elif len(set(abc))==1:
    print(abc[0])
    
0