結果

問題 No.839 Keep Distance and Nobody Explodes
ユーザー convexineqconvexineq
提出日時 2021-04-07 10:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2024-06-22 04:28:26
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 36 ms
52,332 KB
testcase_02 AC 36 ms
52,688 KB
testcase_03 AC 36 ms
53,212 KB
testcase_04 AC 35 ms
52,900 KB
testcase_05 AC 63 ms
76,788 KB
testcase_06 AC 63 ms
76,604 KB
testcase_07 AC 64 ms
76,740 KB
testcase_08 AC 64 ms
76,948 KB
testcase_09 AC 63 ms
76,920 KB
testcase_10 AC 63 ms
76,952 KB
testcase_11 AC 53 ms
68,584 KB
testcase_12 AC 53 ms
69,532 KB
testcase_13 AC 50 ms
64,496 KB
testcase_14 AC 49 ms
64,424 KB
testcase_15 AC 46 ms
63,952 KB
testcase_16 AC 46 ms
63,108 KB
testcase_17 AC 62 ms
76,464 KB
testcase_18 AC 46 ms
63,432 KB
testcase_19 AC 50 ms
65,432 KB
testcase_20 AC 56 ms
74,516 KB
testcase_21 AC 48 ms
64,444 KB
testcase_22 AC 61 ms
76,616 KB
testcase_23 AC 37 ms
53,268 KB
testcase_24 AC 57 ms
74,504 KB
testcase_25 AC 48 ms
65,176 KB
testcase_26 AC 50 ms
66,528 KB
testcase_27 AC 51 ms
67,008 KB
testcase_28 AC 49 ms
66,292 KB
testcase_29 AC 54 ms
73,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())//2
r = [[0]*(n*2) for _ in range(n*2)]
for i in range(n):
    for j in range(n):
        c = i*n+j
        r[i][j] = 2*c + 1
        r[i+n][j] = 2*n*n + 2*c + 1
        r[i][j+n] = 2*n*n + 2*c + 2
        r[i+n][j+n] = 2*c + 2
for i in r:
    print(*i)
0