結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-06 19:10:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,020 KB
最終ジャッジ日時 2024-05-05 01:52:37
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 593 ms
115,020 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 40 ms
54,304 KB
testcase_07 AC 60 ms
67,968 KB
testcase_08 AC 57 ms
66,560 KB
testcase_09 AC 65 ms
73,600 KB
testcase_10 AC 99 ms
78,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

from sys import stdin
from collections import deque

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

Ai = [(A[i],i+1) for i in range(N)]
Ai.sort()
Ai.reverse()

q = deque([])
for na,ni in Ai:
    if len(q) % 2 == 0:
        q.append(ni)
    else:
        q.appendleft(ni)

ans = list(q)
for i in range(N):
    if ans[i] == 1:
        ans = ans[i:] + ans[:i]
        break

ans.append(1)
print (*ans)
0