結果

問題 No.930 数列圧縮
ユーザー rlangevinrlangevin
提出日時 2023-09-28 08:58:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 102,432 KB
最終ジャッジ日時 2024-07-21 03:29:30
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 42 ms
53,060 KB
testcase_02 AC 39 ms
52,192 KB
testcase_03 AC 40 ms
52,704 KB
testcase_04 AC 41 ms
53,636 KB
testcase_05 AC 53 ms
63,416 KB
testcase_06 AC 40 ms
54,012 KB
testcase_07 AC 56 ms
65,904 KB
testcase_08 AC 87 ms
91,364 KB
testcase_09 AC 97 ms
94,212 KB
testcase_10 AC 90 ms
91,124 KB
testcase_11 AC 97 ms
91,484 KB
testcase_12 AC 104 ms
95,748 KB
testcase_13 AC 75 ms
82,668 KB
testcase_14 AC 78 ms
85,296 KB
testcase_15 AC 91 ms
100,072 KB
testcase_16 AC 100 ms
102,432 KB
testcase_17 AC 109 ms
89,016 KB
testcase_18 AC 110 ms
89,816 KB
testcase_19 AC 107 ms
96,648 KB
testcase_20 AC 110 ms
94,920 KB
testcase_21 AC 103 ms
100,104 KB
testcase_22 AC 39 ms
52,348 KB
testcase_23 AC 94 ms
99,556 KB
testcase_24 AC 38 ms
53,112 KB
testcase_25 AC 40 ms
51,872 KB
testcase_26 AC 43 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
stack = [A[0]]
ans = []
for i in range(1, N):
    while len(stack) >= 2:
        if stack[-1] < A[i]:
            ans.append(stack.pop())
        else:
            break
    if stack[-1] < A[i]:
        ans.append(A[i])
    else:
        stack.append(A[i])

if len(ans) == N - 1:
    print("Yes")
    print(*ans)
else:
    print("No")
0