結果

問題 No.1373 Directed Operations
ユーザー ああいいああいい
提出日時 2022-01-29 14:44:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 92,724 KB
最終ジャッジ日時 2024-06-10 12:55:52
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,280 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 97 ms
91,888 KB
testcase_03 AC 80 ms
91,312 KB
testcase_04 AC 81 ms
92,576 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 298 ms
92,420 KB
testcase_07 AC 56 ms
68,700 KB
testcase_08 AC 77 ms
76,320 KB
testcase_09 AC 286 ms
92,616 KB
testcase_10 AC 245 ms
89,960 KB
testcase_11 AC 91 ms
77,584 KB
testcase_12 AC 240 ms
89,788 KB
testcase_13 AC 66 ms
75,556 KB
testcase_14 AC 306 ms
92,472 KB
testcase_15 AC 273 ms
90,060 KB
testcase_16 AC 305 ms
92,724 KB
testcase_17 AC 132 ms
87,632 KB
testcase_18 AC 72 ms
82,796 KB
testcase_19 AC 145 ms
81,376 KB
testcase_20 AC 190 ms
84,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
a = list(map(int,input().split()))
l = [(a[i],i) for i in range(N-1)]
ans = [0] * (N-1)
l.sort()


for j in range(N-1):
    if l[j][0] > j+1:
        print('NO')
        exit()
    else:
        ans[l[j][1]] = j+2-l[j][0]
print('YES')
for i in ans:
    print(i)
0