結果
| 問題 | No.24 数当てゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-06-07 17:50:26 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 5,000 ms |
| コード長 | 914 bytes |
| コンパイル時間 | 314 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-26 01:44:37 |
| 合計ジャッジ時間 | 1,116 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
def change(questions):
only_int_list = []
for i in questions:
try:
changed_value = int(i)
only_int_list.append(changed_value)
except Exception:
pass
return only_int_list
def main():
numbers_list_yes = [i for i in range(10)]
numbers_list_no = [i for i in range(10)]
check_lists = []
question_count = int(input())
for _ in range(question_count):
check_lists.append(input().split())
for check_list in check_lists:
if "NO" in check_list:
only_int_list = change(check_list)
for list_value in only_int_list:
try:
numbers_list_no.remove(list_value)
except ValueError:
continue
else:
only_int_list = change(check_list)
numbers_list_yes = [x for x in only_int_list if x in numbers_list_yes]
ans = list(set(numbers_list_yes) & set(numbers_list_no))
print(ans[0])
if __name__ == '__main__':
main()