結果

問題 No.930 数列圧縮
ユーザー vwxyzvwxyz
提出日時 2022-09-27 15:47:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,240 KB
最終ジャッジ日時 2024-06-02 01:05:39
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 124 ms
17,756 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 140 ms
17,376 KB
testcase_12 WA -
testcase_13 AC 44 ms
15,952 KB
testcase_14 AC 50 ms
16,940 KB
testcase_15 AC 160 ms
20,240 KB
testcase_16 AC 139 ms
20,084 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 167 ms
19,980 KB
testcase_20 WA -
testcase_21 AC 168 ms
20,112 KB
testcase_22 AC 25 ms
10,624 KB
testcase_23 AC 128 ms
20,052 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
A=list(map(int,readline().split()))
if A[0]>A[1]:
    print("No")
else:
    print("Yes")
    queue=[]
    ans_lst=[]
    for a in A[1:-1]:
        queue.append(a)
        while len(queue)>=2 and queue[-2]<queue[-1]:
            x=queue.pop()
            ans_lst.append(queue.pop())
            queue.append(x)
    while queue and queue[-1]<A[-1]:
        ans_lst.append(queue.pop())
    ans_lst+=queue
    ans_lst.append(A[0])
    print(*ans_lst)
0