結果

問題 No.930 数列圧縮
ユーザー H3PO4H3PO4
提出日時 2022-04-01 09:48:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,776 KB
最終ジャッジ日時 2024-04-29 16:54:22
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 33 ms
11,008 KB
testcase_08 AC 117 ms
17,300 KB
testcase_09 AC 126 ms
18,676 KB
testcase_10 AC 111 ms
16,976 KB
testcase_11 AC 117 ms
17,624 KB
testcase_12 AC 130 ms
19,576 KB
testcase_13 AC 47 ms
15,828 KB
testcase_14 AC 50 ms
17,140 KB
testcase_15 AC 148 ms
20,656 KB
testcase_16 AC 149 ms
20,652 KB
testcase_17 AC 150 ms
20,776 KB
testcase_18 AC 149 ms
20,524 KB
testcase_19 AC 154 ms
20,520 KB
testcase_20 AC 152 ms
20,648 KB
testcase_21 AC 150 ms
20,776 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 147 ms
20,652 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 29 ms
10,496 KB
testcase_26 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))

if A[0] > A[-1]:
    print("No")
    exit()

ans = []
for i in range(1, N - 1):
    if A[0] < A[i]:
        ans.append(A[i])
for i in range(N - 2, 0, -1):
    if A[0] > A[i]:
        ans.append(A[i])
ans.append(A[-1])
print("Yes")
print(*ans)
0