結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 120 ms
98,304 KB
testcase_03 AC 93 ms
97,920 KB
testcase_04 AC 94 ms
98,816 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 428 ms
97,344 KB
testcase_07 AC 60 ms
66,048 KB
testcase_08 AC 83 ms
74,368 KB
testcase_09 AC 322 ms
97,752 KB
testcase_10 AC 274 ms
95,872 KB
testcase_11 AC 94 ms
78,976 KB
testcase_12 AC 267 ms
95,400 KB
testcase_13 AC 62 ms
66,688 KB
testcase_14 AC 449 ms
97,604 KB
testcase_15 AC 404 ms
95,872 KB
testcase_16 AC 450 ms
97,536 KB
testcase_17 AC 162 ms
92,416 KB
testcase_18 AC 90 ms
85,760 KB
testcase_19 AC 188 ms
83,732 KB
testcase_20 AC 254 ms
87,792 KB
権限があれば一括ダウンロードができます

ソースコード

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