結果
| 問題 |
No.930 数列圧縮
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-08-15 11:11:26 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 489 bytes |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 82,296 KB |
| 実行使用メモリ | 94,504 KB |
| 最終ジャッジ日時 | 2024-10-01 23:47:13 |
| 合計ジャッジ時間 | 5,792 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 18 |
ソースコード
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")
else:
print("Yes")
print(*ans)