結果
問題 | No.2442 線形写像 |
ユーザー | miho-4 |
提出日時 | 2023-08-25 22:56:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 277 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 86,272 KB |
最終ジャッジ日時 | 2024-06-06 17:41:34 |
合計ジャッジ時間 | 2,749 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,096 KB |
testcase_01 | AC | 35 ms
52,224 KB |
testcase_02 | AC | 35 ms
51,840 KB |
testcase_03 | AC | 37 ms
51,840 KB |
testcase_04 | AC | 35 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
51,840 KB |
testcase_07 | WA | - |
testcase_08 | AC | 36 ms
52,096 KB |
testcase_09 | AC | 35 ms
52,224 KB |
testcase_10 | WA | - |
testcase_11 | AC | 47 ms
60,416 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 49 ms
60,416 KB |
testcase_15 | AC | 85 ms
76,288 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 121 ms
77,056 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
n=int(input()) L=[int(input()) for _ in range(1<<n)] for bit in range(64): cnt=0 cnt2=0 for i in range(1<<n): if i>>bit&1: if L[i]>>bit&1: cnt+=1 cnt2+=1 else: if L[i]>>bit&1: exit(print("No")) if cnt not in [0,cnt2]: exit(print("No")) print("Yes")