結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 48 ms
52,608 KB
testcase_05 AC 59 ms
62,848 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 63 ms
66,176 KB
testcase_08 AC 99 ms
91,264 KB
testcase_09 AC 112 ms
94,080 KB
testcase_10 AC 102 ms
91,312 KB
testcase_11 AC 107 ms
91,776 KB
testcase_12 AC 114 ms
96,000 KB
testcase_13 AC 84 ms
81,408 KB
testcase_14 AC 83 ms
85,120 KB
testcase_15 AC 92 ms
99,816 KB
testcase_16 AC 112 ms
102,400 KB
testcase_17 AC 109 ms
89,984 KB
testcase_18 AC 117 ms
89,472 KB
testcase_19 AC 119 ms
96,772 KB
testcase_20 AC 118 ms
94,848 KB
testcase_21 AC 113 ms
99,736 KB
testcase_22 AC 40 ms
52,084 KB
testcase_23 AC 105 ms
100,152 KB
testcase_24 AC 41 ms
51,712 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 40 ms
51,712 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