結果

問題 No.839 Keep Distance and Nobody Explodes
ユーザー 👑 rin204rin204
提出日時 2022-03-24 16:27:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 76,956 KB
最終ジャッジ日時 2024-10-13 00:41:47
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 37 ms
53,092 KB
testcase_02 AC 37 ms
52,184 KB
testcase_03 AC 36 ms
53,568 KB
testcase_04 AC 38 ms
52,808 KB
testcase_05 AC 70 ms
76,956 KB
testcase_06 AC 69 ms
76,556 KB
testcase_07 AC 70 ms
76,696 KB
testcase_08 AC 68 ms
76,640 KB
testcase_09 AC 68 ms
76,776 KB
testcase_10 AC 68 ms
76,392 KB
testcase_11 AC 55 ms
69,720 KB
testcase_12 AC 56 ms
70,948 KB
testcase_13 AC 54 ms
67,412 KB
testcase_14 AC 51 ms
65,752 KB
testcase_15 AC 47 ms
63,420 KB
testcase_16 AC 44 ms
61,380 KB
testcase_17 AC 66 ms
76,496 KB
testcase_18 AC 47 ms
62,028 KB
testcase_19 AC 46 ms
64,668 KB
testcase_20 AC 64 ms
76,412 KB
testcase_21 AC 45 ms
62,244 KB
testcase_22 AC 66 ms
76,608 KB
testcase_23 AC 37 ms
54,160 KB
testcase_24 AC 65 ms
76,048 KB
testcase_25 AC 46 ms
63,772 KB
testcase_26 AC 53 ms
68,320 KB
testcase_27 AC 54 ms
68,788 KB
testcase_28 AC 55 ms
68,156 KB
testcase_29 AC 59 ms
74,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [[0] * n for _ in range(n)]
n //= 2
x = 1
for i in range(n):
    if i % 2 == 0:
        for j in range(n):
            A[i][j] = x
            x += 1
            A[i + n][j + n] = x
            x += 1
    else:
        for j in range(n - 1, -1, -1):
            A[i][j] = x
            x += 1
            A[i + n][j + n] = x
            x += 1

for i in range(n):
    if i % 2 == 0:
        for j in range(n):
            A[i + n][j] = x
            x += 1
            A[i][j + n] = x
            x += 1
    else:
        for j in range(n - 1, -1, -1):
            A[i + n][j] = x
            x += 1
            A[i][j + n] = x
            x += 1
for row in A:
    print(*row)
0