結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 34 ms
11,136 KB
testcase_08 AC 113 ms
17,184 KB
testcase_09 AC 131 ms
18,932 KB
testcase_10 AC 112 ms
17,096 KB
testcase_11 AC 118 ms
17,624 KB
testcase_12 AC 133 ms
19,408 KB
testcase_13 AC 48 ms
15,952 KB
testcase_14 AC 52 ms
17,104 KB
testcase_15 AC 152 ms
20,652 KB
testcase_16 AC 153 ms
20,656 KB
testcase_17 AC 155 ms
20,648 KB
testcase_18 AC 151 ms
20,652 KB
testcase_19 AC 153 ms
20,648 KB
testcase_20 AC 154 ms
20,632 KB
testcase_21 AC 152 ms
20,644 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 151 ms
20,776 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 30 ms
10,880 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