結果

問題 No.930 数列圧縮
ユーザー stng
提出日時 2022-08-15 11:13:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-10-01 23:50:18
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 3 RE * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]

now = a[0]
ans = []
idx = 1
for i in range(n*10):
    if idx >= n:
        break
    if a[idx] == 0:
        idx += 1
        continue
    if now < a[idx]:
        ans.append(a[idx])
        a[idx] = 0
    else:
        if idx+1 >= n:
            break
        if a[idx] < a[idx+1]:
            ans.append(a[idx])
            a[idx] = 0
            idx += 1

if len(ans) != n-1:
    print("No")
    print(kk)
else:
    print("Yes")
    print(*ans)
0