結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー とりゐとりゐ
提出日時 2021-05-25 12:01:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 145,100 KB
最終ジャッジ日時 2024-05-05 01:19:05
合計ジャッジ時間 2,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 685 ms
145,100 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 55 ms
65,536 KB
testcase_08 AC 53 ms
64,256 KB
testcase_09 AC 69 ms
69,248 KB
testcase_10 AC 96 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=[[a[i],i] for i in range(n)]
b.sort(reverse=True)
x=[]
y=[]
for i in range(n):
  if i%2==0:
    x.append(b[i])
  else:
    y.append(b[i])
z=x+y[::-1]
for i in range(n):
  if z[i][1]==0:
    s=i
ans=[]
for i in range(s,n):
  ans.append(z[i][1]+1)
for i in range(s):
  ans.append(z[i][1]+1)
ans.append(1)
print(*ans)
0