結果
問題 | No.24 数当てゲーム |
ユーザー |
|
提出日時 | 2024-03-12 22:23:57 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-29 22:27:15 |
合計ジャッジ時間 | 1,043 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 10 |
ソースコード
input_list = input().split() converted_list = [] for item in input_list: if item == "NO": converted_list.append(1) elif item == "YES": converted_list.append(0) else: converted_list.append(int(item)) possible_list = list(range(0, 10)) for i in range(1, converted_list[0] + 1): if converted_list[5 * i] == 0: possible_list = list(set(possible_list) & set(converted_list[(5 * i - 4):(5 * i)])) elif converted_list[5 * i] == 1: possible_list = list(set(possible_list) - set(converted_list[(5 * i - 4):(5 * i)])) print(possible_list[0])