結果
問題 |
No.2442 線形写像
|
ユーザー |
|
提出日時 | 2023-06-10 10:51:04 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 133,124 KB |
最終ジャッジ日時 | 2025-01-02 16:46:03 |
合計ジャッジ時間 | 9,598 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 TLE * 2 |
ソースコード
N = int(input()) A = [0] * (1 << N) A[0] = int(input()) if A[0]: print('No') exit() for S in range(1, 1 << N): A[S] = int(input()) T = S while T: if A[S] ^ A[T] ^ A[S ^ T]: print('No') exit() T -= 1 T &= S print('Yes')