結果

問題 No.839 Keep Distance and Nobody Explodes
ユーザー H3PO4H3PO4
提出日時 2021-02-21 09:50:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,840 KB
最終ジャッジ日時 2024-09-19 07:15:16
合計ジャッジ時間 18,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 509 ms
43,828 KB
testcase_01 AC 505 ms
43,576 KB
testcase_02 AC 509 ms
43,576 KB
testcase_03 AC 508 ms
43,584 KB
testcase_04 AC 514 ms
43,832 KB
testcase_05 AC 561 ms
43,700 KB
testcase_06 AC 562 ms
43,572 KB
testcase_07 AC 562 ms
43,680 KB
testcase_08 AC 573 ms
43,832 KB
testcase_09 AC 566 ms
43,828 KB
testcase_10 AC 602 ms
43,836 KB
testcase_11 AC 522 ms
43,820 KB
testcase_12 AC 529 ms
43,580 KB
testcase_13 AC 518 ms
43,580 KB
testcase_14 AC 509 ms
43,828 KB
testcase_15 AC 508 ms
43,576 KB
testcase_16 AC 510 ms
43,840 KB
testcase_17 AC 550 ms
43,680 KB
testcase_18 AC 508 ms
43,692 KB
testcase_19 AC 511 ms
43,676 KB
testcase_20 AC 536 ms
43,828 KB
testcase_21 AC 510 ms
43,832 KB
testcase_22 AC 548 ms
43,576 KB
testcase_23 AC 508 ms
43,832 KB
testcase_24 AC 533 ms
43,704 KB
testcase_25 AC 511 ms
43,708 KB
testcase_26 AC 512 ms
43,712 KB
testcase_27 AC 522 ms
43,680 KB
testcase_28 AC 513 ms
43,576 KB
testcase_29 AC 527 ms
43,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
odd = np.zeros(N, dtype=int)
odd[0] = 1
odd[-1] = N + 1
odd[1:N // 2] = np.arange(N + 3, 2 * N, 2)
odd[N // 2:-1] = np.arange(N - 1, 2, -2)

even = np.zeros(N, dtype=int)
even[:N // 2] = np.arange(N, 1, -2)
even[N // 2:] = np.arange(N + 2, 2 * N + 1, 2)

A = np.tile(np.arange(0, N * N, 2 * N), (N, 2)).T
A[:N//2] += odd
A[N//2:] += even
for a in A:
    print(*a)
0