結果

問題 No.1373 Directed Operations
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-02-12 12:19:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-07-19 06:30:43
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 141 ms
97,152 KB
testcase_03 AC 90 ms
97,152 KB
testcase_04 AC 95 ms
98,304 KB
testcase_05 AC 39 ms
51,328 KB
testcase_06 AC 334 ms
98,300 KB
testcase_07 AC 58 ms
65,024 KB
testcase_08 AC 75 ms
72,576 KB
testcase_09 AC 316 ms
98,304 KB
testcase_10 AC 264 ms
94,720 KB
testcase_11 AC 87 ms
74,752 KB
testcase_12 AC 261 ms
94,720 KB
testcase_13 AC 62 ms
66,048 KB
testcase_14 AC 346 ms
98,048 KB
testcase_15 AC 309 ms
94,976 KB
testcase_16 AC 355 ms
98,432 KB
testcase_17 AC 146 ms
92,032 KB
testcase_18 AC 82 ms
85,248 KB
testcase_19 AC 157 ms
83,944 KB
testcase_20 AC 200 ms
87,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
sa = [[a[i],i] for i in range(n-1)]
sa.sort()
ans = [-1]*(n-1)
for i in range(n-1):
    a,ind = sa[i]
    if a > i+1:
        print("NO")
        exit()
    ans[ind] = i-a+2
print("YES")
for i in ans:
    print(i)
0