結果
問題 | No.2212 One XOR Matrix |
ユーザー | tamato |
提出日時 | 2023-02-10 22:03:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 180 ms / 2,000 ms |
コード長 | 1,005 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 82,824 KB |
実行使用メモリ | 87,612 KB |
最終ジャッジ日時 | 2024-07-07 16:18:31 |
合計ジャッジ時間 | 3,053 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,312 KB |
testcase_01 | AC | 37 ms
52,272 KB |
testcase_02 | AC | 39 ms
53,224 KB |
testcase_03 | AC | 39 ms
52,924 KB |
testcase_04 | AC | 41 ms
59,092 KB |
testcase_05 | AC | 53 ms
66,384 KB |
testcase_06 | AC | 57 ms
70,184 KB |
testcase_07 | AC | 71 ms
76,632 KB |
testcase_08 | AC | 96 ms
78,264 KB |
testcase_09 | AC | 180 ms
87,612 KB |
ソースコード
mod = 998244353 def main(): import sys input = sys.stdin.readline N = int(input()) if N == 1: print(-1) exit() NN = 2 ans = [ [7, 14, 0, 8], [4, 12, 2, 11], [15, 9, 6, 1], [13, 10, 5, 3] ] while NN < N: L = len(ans) LL = L * L ans_new = [[0] * (L * 2) for _ in range(L * 2)] for i in range(L): for j in range(L): ans_new[i][j] = ans[i][j] ans_new[i+L][j+L] = ans[i][j] + LL ans_new[i][j+L] = LL * 2 + i * L + j ans_new[i+L][j] = LL * 3 + i * L + j ans = ans_new NN += 1 for line in ans: print(*line) L = len(ans) for i in range(L): x = 0 for j in range(L): x ^= ans[i][j] assert x == 1 for j in range(L): x = 0 for i in range(L): x ^= ans[i][j] assert x == 1 if __name__ == '__main__': main()