結果
問題 | No.24 数当てゲーム |
ユーザー | sue_charo |
提出日時 | 2017-08-12 18:45:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-13 05:59:19 |
合計ジャッジ時間 | 919 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
# coding: utf-8 N = int(input()) ABCDR = [input().split() for __ in range(N)] ans = [-1] * 10 for abcdr in ABCDR: a, b, c, d = map(int, abcdr[:4]) s_abcd = {a, b, c, d} r = abcdr[4] if r == "YES": for i in range(10): if i in s_abcd: ans[i] = 1 else: ans[i] = 0 else: for i in range(10): if i in s_abcd: ans[i] = 0 else: ans[i] = 1 for ind, flag in enumerate(ans): if flag: print(ind)