結果

問題 No.930 数列圧縮
ユーザー rlangevinrlangevin
提出日時 2023-09-28 08:57:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,552 KB
最終ジャッジ日時 2024-07-21 03:28:25
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 94 ms
17,036 KB
testcase_09 AC 137 ms
18,556 KB
testcase_10 AC 107 ms
16,988 KB
testcase_11 AC 103 ms
17,884 KB
testcase_12 AC 115 ms
18,836 KB
testcase_13 AC 70 ms
15,596 KB
testcase_14 AC 74 ms
16,888 KB
testcase_15 AC 129 ms
20,544 KB
testcase_16 AC 147 ms
20,416 KB
testcase_17 AC 154 ms
20,416 KB
testcase_18 AC 162 ms
20,552 KB
testcase_19 AC 141 ms
20,544 KB
testcase_20 AC 138 ms
20,552 KB
testcase_21 AC 130 ms
20,420 KB
testcase_22 AC 25 ms
10,496 KB
testcase_23 AC 130 ms
20,420 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 26 ms
10,624 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