結果
問題 | No.24 数当てゲーム |
ユーザー | 阿部祥紀 |
提出日時 | 2024-04-08 16:55:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 178 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-01 09:02:57 |
合計ジャッジ時間 | 906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,624 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 24 ms
10,752 KB |
testcase_05 | AC | 24 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 24 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 24 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])] else: ans=ans print(ans[0]) if __name__ == "__main__": main()