結果
問題 | No.2442 線形写像 |
ユーザー | グミ |
提出日時 | 2023-08-25 21:35:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 302 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 84,480 KB |
最終ジャッジ日時 | 2024-06-06 15:54:01 |
合計ジャッジ時間 | 4,906 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
56,832 KB |
testcase_01 | AC | 39 ms
51,456 KB |
testcase_02 | AC | 42 ms
51,584 KB |
testcase_03 | AC | 42 ms
51,456 KB |
testcase_04 | AC | 42 ms
51,584 KB |
testcase_05 | AC | 44 ms
51,712 KB |
testcase_06 | AC | 39 ms
51,456 KB |
testcase_07 | AC | 40 ms
51,584 KB |
testcase_08 | AC | 45 ms
57,088 KB |
testcase_09 | AC | 47 ms
57,728 KB |
testcase_10 | AC | 50 ms
59,008 KB |
testcase_11 | AC | 59 ms
62,592 KB |
testcase_12 | AC | 59 ms
62,464 KB |
testcase_13 | AC | 60 ms
62,464 KB |
testcase_14 | AC | 59 ms
62,336 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
def main(): n = int(input()) arr = [] m = 2**n for _ in range(m): a=int(input()) arr.append(a) ans = True for i in range(m): for j in range(i,m): c = arr[i^j] == arr[i]^arr[j] if not c: ans = False break print('Yes' if ans else 'No') if __name__ == "__main__": main()