結果
問題 | No.24 数当てゲーム |
ユーザー | BE: SEVENTH |
提出日時 | 2024-06-07 17:50:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-07 17:50:28 |
合計ジャッジ時間 | 1,185 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 31 ms
10,624 KB |
testcase_04 | AC | 30 ms
10,624 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,624 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 30 ms
10,624 KB |
ソースコード
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()