結果
| 問題 |
No.24 数当てゲーム
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-03-26 01:33:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 5,000 ms |
| コード長 | 385 bytes |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-29 00:59:38 |
| 合計ジャッジ時間 | 928 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
ans = (1 << 10) - 1
for x in range(int(input())):
tmp = 0
l = [i for i in input().split(" ")]
for i in l:
if '0' <= i and i <= '9':
tmp += 1 << int(i)
elif i == "YES":
ans = ans & tmp
else:
ans = ans & ~tmp
cnt = 0
while ans > 0:
if ans & 1 == 1:
print(cnt)
ans = ans >> 1
cnt += 1