結果

問題 No.1373 Directed Operations
ユーザー NoaSaberNoaSaber
提出日時 2021-03-07 17:21:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 938 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 102,388 KB
最終ジャッジ日時 2024-10-08 23:27:19
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 115 ms
96,892 KB
testcase_03 AC 73 ms
91,008 KB
testcase_04 AC 75 ms
93,440 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 417 ms
102,388 KB
testcase_07 AC 61 ms
67,712 KB
testcase_08 AC 86 ms
76,944 KB
testcase_09 AC 167 ms
97,920 KB
testcase_10 AC 148 ms
95,744 KB
testcase_11 AC 65 ms
68,736 KB
testcase_12 AC 136 ms
89,472 KB
testcase_13 AC 52 ms
62,848 KB
testcase_14 AC 413 ms
97,768 KB
testcase_15 AC 363 ms
95,488 KB
testcase_16 AC 409 ms
98,176 KB
testcase_17 AC 145 ms
97,536 KB
testcase_18 AC 84 ms
87,808 KB
testcase_19 AC 185 ms
85,732 KB
testcase_20 AC 243 ms
90,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a=list(map(int,input().split()))
a=[(i+1,j) for i,j in enumerate(a)]
a.sort(key=lambda x:x[1])
ans=[]
for j,i in enumerate(a):
    if i[1]>j+1:
       print("NO")
       exit()
    else:
        ans.append((i[0],j+2-i[1]))
ans.sort()
print("YES")
for i,j in ans:
    print(j)
0