結果

問題 No.930 数列圧縮
ユーザー convexineqconvexineq
提出日時 2021-04-11 20:51:57
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 294 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-06-27 15:14:10
合計ジャッジ時間 11,910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,344 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,992 KB
testcase_05 AC 51 ms
61,860 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 55 ms
63,992 KB
testcase_08 AC 195 ms
90,228 KB
testcase_09 TLE -
testcase_10 AC 1,067 ms
91,008 KB
testcase_11 AC 715 ms
90,368 KB
testcase_12 AC 883 ms
94,080 KB
testcase_13 AC 842 ms
75,392 KB
testcase_14 AC 829 ms
76,416 KB
testcase_15 AC 89 ms
97,664 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
res = []
for i in range(1,n):
    if a[0]==i:
        res += a[1:]
        break
    elif a[-1]==i:
        break
    else:
        a.pop(a.index(i))
        res.append(i)

if len(res) < n-1:
    print("No")
else:
    print("Yes")
    print(*res)
0