結果

問題 No.930 数列圧縮
ユーザー ああいいああいい
提出日時 2022-01-01 21:05:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,812 KB
最終ジャッジ日時 2024-10-10 14:29:41
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 AC 32 ms
11,136 KB
testcase_08 AC 101 ms
17,196 KB
testcase_09 AC 116 ms
18,884 KB
testcase_10 AC 98 ms
16,940 KB
testcase_11 AC 104 ms
17,956 KB
testcase_12 AC 118 ms
18,820 KB
testcase_13 AC 49 ms
15,720 KB
testcase_14 AC 51 ms
17,088 KB
testcase_15 AC 137 ms
20,808 KB
testcase_16 AC 139 ms
20,680 KB
testcase_17 AC 136 ms
20,812 KB
testcase_18 AC 135 ms
20,560 KB
testcase_19 AC 136 ms
20,684 KB
testcase_20 AC 137 ms
20,684 KB
testcase_21 AC 136 ms
20,808 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 135 ms
20,692 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))

import sys
if a[0] > a[-1]:
    print('No')
    exit()
print('Yes')

def calc(l,flag = True):
    if len(l) == 2:
        print(l[0])
        exit()
    s = []
    if flag:
        now = l[0]
        s.append(now)
        for i in range(1,len(l)-1):
            if l[i] > now:
                print(l[i],end = " ")
            else:
                s.append(l[i])
                now = l[i]
        s.append(l[-1])
        calc(s,False)
    else:
        now = l[-1]
        s.append(now)
        for i in reversed(range(1,len(l)-1)):
            if l[i] < now:
                print(l[i],end = " ")
            else:
                s.append(l[i])
                now = l[i]
        s.append(l[0])
        calc(s[::-1],True)
calc(a,True)
0