結果

問題 No.930 数列圧縮
ユーザー chocoruskchocorusk
提出日時 2019-03-30 06:19:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,648 KB
最終ジャッジ日時 2024-11-07 17:05:00
合計ジャッジ時間 4,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 35 ms
11,008 KB
testcase_08 AC 134 ms
17,120 KB
testcase_09 AC 152 ms
18,540 KB
testcase_10 AC 129 ms
17,100 KB
testcase_11 AC 139 ms
17,492 KB
testcase_12 AC 156 ms
18,804 KB
testcase_13 AC 47 ms
15,696 KB
testcase_14 AC 52 ms
16,876 KB
testcase_15 AC 178 ms
20,644 KB
testcase_16 AC 176 ms
20,644 KB
testcase_17 AC 181 ms
20,520 KB
testcase_18 AC 178 ms
20,516 KB
testcase_19 AC 178 ms
20,644 KB
testcase_20 AC 180 ms
20,648 KB
testcase_21 AC 179 ms
20,644 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 176 ms
20,648 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int, input().split()))
if a[0]>a[n-1]:
    print("No")
else:
    print("Yes")
    for i in range(1, n-1):
        if a[0]<a[i]:
            print("%d " % a[i], end="")
    for i in range(n-2, 0, -1):
        if a[0]>a[i]:
            print("%d " % a[i], end="")
    print(a[n-1])
0