結果

問題 No.930 数列圧縮
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-07 22:52:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 103,436 KB
最終ジャッジ日時 2024-07-07 04:54:37
合計ジャッジ時間 4,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,072 KB
testcase_01 AC 30 ms
53,160 KB
testcase_02 AC 34 ms
53,140 KB
testcase_03 AC 34 ms
53,556 KB
testcase_04 AC 32 ms
52,956 KB
testcase_05 AC 45 ms
63,228 KB
testcase_06 AC 32 ms
52,956 KB
testcase_07 AC 46 ms
67,220 KB
testcase_08 AC 74 ms
92,032 KB
testcase_09 AC 81 ms
94,928 KB
testcase_10 AC 72 ms
91,896 KB
testcase_11 AC 79 ms
92,580 KB
testcase_12 AC 79 ms
96,988 KB
testcase_13 AC 61 ms
81,492 KB
testcase_14 AC 64 ms
84,728 KB
testcase_15 AC 77 ms
100,268 KB
testcase_16 AC 82 ms
103,436 KB
testcase_17 AC 88 ms
97,532 KB
testcase_18 AC 88 ms
97,412 KB
testcase_19 AC 86 ms
98,524 KB
testcase_20 AC 90 ms
97,656 KB
testcase_21 AC 83 ms
100,656 KB
testcase_22 AC 33 ms
53,780 KB
testcase_23 AC 78 ms
100,636 KB
testcase_24 AC 31 ms
51,940 KB
testcase_25 AC 32 ms
52,344 KB
testcase_26 AC 33 ms
52,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
start = A[0]
l = []
rest = []
for a in A[1:]:
    while rest and rest[-1] < a:
        l.append(rest.pop())

    if start < a:
        l.append(a)
    else:
        rest.append(a)

if rest:
    print("No")
else:
    print("Yes")
    print(*l)
0