結果

問題 No.1934 Four Fruits
ユーザー 👑 KazunKazun
提出日時 2022-05-13 21:22:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-07-22 00:49:32
合計ジャッジ時間 956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,284 KB
testcase_01 AC 37 ms
52,344 KB
testcase_02 AC 35 ms
52,828 KB
testcase_03 WA -
testcase_04 AC 33 ms
51,876 KB
testcase_05 AC 32 ms
53,936 KB
testcase_06 AC 33 ms
52,120 KB
testcase_07 AC 34 ms
53,072 KB
testcase_08 AC 34 ms
53,536 KB
testcase_09 AC 33 ms
52,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b,c):
    X=[a,b,c]

    # 4 of a kind
    for k in range(4):
        if X.count(k)==3:
            return k

    # 2 pair
    for i in range(4):
        for j in range(4):
            if X.count(i)==2 and X.count(j):
                return j

    # high card
    for i in range(4):
        if X.count(i)==0:
            return i

a,b,c=map(int,input().split())

print(f(a,b,c))
0