結果
問題 | No.24 数当てゲーム |
ユーザー | k0825 |
提出日時 | 2019-03-04 17:03:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 454 bytes |
コンパイル時間 | 452 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-06-23 13:35:24 |
合計ジャッジ時間 | 1,642 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
13,824 KB |
testcase_01 | AC | 54 ms
13,824 KB |
testcase_02 | WA | - |
testcase_03 | AC | 51 ms
13,952 KB |
testcase_04 | AC | 54 ms
13,824 KB |
testcase_05 | WA | - |
testcase_06 | AC | 53 ms
13,824 KB |
testcase_07 | AC | 52 ms
13,824 KB |
testcase_08 | AC | 52 ms
13,824 KB |
testcase_09 | AC | 51 ms
13,824 KB |
ソースコード
from statistics import mode n = int(input()) yes = [] no = [] y_flag = 0 n_flag = 0 for i in range(n): a = input().split() if a[-1] == 'YES': yes.extend(a[:-1]) y_flag += 1 else: no.extend(a[:-1]) n_flag += 1 if y_flag == 0: print(''.join([str(i) for i in range(0, 10) if str(i) not in no])) elif n_flag == 0: print(mode(yes)) else: if y_flag > 1: yes = mode(yes) for i in range(len(yes)): if yes[i] not in no: print(yes[i]) exit()