結果
問題 | No.24 数当てゲーム |
ユーザー | 阿部祥紀 |
提出日時 | 2024-04-08 16:52:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 346 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-01 08:59:17 |
合計ジャッジ時間 | 887 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 29 ms
10,752 KB |
ソースコード
def main(): turn=int(input()) ans=([i for i in range(10)]) for i in range(turn): taro=list(map(str,input().split())) if taro[4] == "NO": ans=[i for i in ans if i != int(taro[0]) and i != int(taro[1]) and i != int(taro[2]) and i != int(taro[3])] print(ans[0]) if __name__ == "__main__": main()