結果

問題 No.930 数列圧縮
ユーザー vwxyzvwxyz
提出日時 2022-09-27 15:47:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,112 KB
最終ジャッジ日時 2024-12-22 16:57:01
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 33 ms
10,624 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 142 ms
17,668 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 143 ms
17,120 KB
testcase_12 WA -
testcase_13 AC 48 ms
15,952 KB
testcase_14 AC 50 ms
17,072 KB
testcase_15 AC 182 ms
19,984 KB
testcase_16 AC 162 ms
19,924 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 192 ms
19,852 KB
testcase_20 WA -
testcase_21 AC 193 ms
20,024 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 152 ms
19,952 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 30 ms
10,496 KB
testcase_26 AC 31 ms
10,752 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