結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー ygd.ygd.
提出日時 2021-06-12 21:03:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 121,104 KB
最終ジャッジ日時 2024-05-10 00:04:52
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 634 ms
121,104 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
54,144 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 63 ms
67,456 KB
testcase_08 AC 60 ms
66,176 KB
testcase_09 AC 67 ms
73,472 KB
testcase_10 AC 108 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def main():
    N = int(input())
    A = list(map(int,input().split()))
    Z = []
    for i,a in enumerate(A):
        Z.append((a,i+1)) #1-index
    Z.sort()
    ans = []
    idx = 0
    while True:
        ans.append(Z[idx][1])
        if idx + 2 < N:
            idx += 2
            Flag = 0
        elif idx + 1 < N:
            idx += 1
            Flag = 1
        else:
            break
    if Flag == 0:
        idx -= 1
    else:
        idx -= 2
    while True:
        ans.append(Z[idx][1])
        if idx - 2 >= 0:
            idx -= 2
        elif idx - 1 >= 0:
            idx -= 1
        else:
            break

    #print(ans)
    ans.pop() #最後の2回目は不要
    ret = deque(ans)
    while ret[0] != 1:
        v = ret.popleft()
        ret.append(v)
    ret.append(1)
    print(*ret)

if __name__ == '__main__':
    main()
0