結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー H3PO4H3PO4
提出日時 2024-04-14 09:02:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,716 KB
最終ジャッジ日時 2024-10-03 06:05:49
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 467 ms
44,440 KB
testcase_01 AC 444 ms
44,444 KB
testcase_02 AC 675 ms
58,716 KB
testcase_03 AC 436 ms
44,708 KB
testcase_04 AC 443 ms
44,192 KB
testcase_05 AC 460 ms
44,448 KB
testcase_06 AC 467 ms
44,576 KB
testcase_07 AC 451 ms
44,584 KB
testcase_08 AC 450 ms
44,196 KB
testcase_09 AC 461 ms
44,320 KB
testcase_10 AC 469 ms
44,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
A = np.fromstring(input(), dtype=int, sep=" ")
sorted_order = np.argsort(A) + 1
answer_order = np.concatenate([sorted_order[::2], sorted_order[1::2][::-1]])
one_key = np.where(answer_order == 1)[0][0]
ans = np.roll(answer_order, -one_key)
ans = np.append(ans, 1)
print(*ans)
0