結果

問題 No.1373 Directed Operations
ユーザー hir355hir355
提出日時 2021-02-05 21:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-07-02 11:45:12
合計ジャッジ時間 5,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
n -= 1
a = list(map(int, input().split()))
for i in range(n):
    a[i] = [a[i], i, 0]
a.sort()
for i in range(n):
    if a[i][0] > i + 1:
        print('NO')
        break
else:
    print('YES')
    for i in range(n):
        a[i][2] = i + 2 - a[i][0]
    a.sort(key=lambda x:x[1])
    for row in a:
        print(row[2])
0