結果

問題 No.1373 Directed Operations
ユーザー KudeKude
提出日時 2021-02-05 21:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 91,436 KB
最終ジャッジ日時 2024-07-02 11:44:42
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,996 KB
testcase_01 AC 32 ms
53,148 KB
testcase_02 AC 89 ms
90,244 KB
testcase_03 AC 70 ms
89,996 KB
testcase_04 AC 73 ms
91,436 KB
testcase_05 AC 32 ms
51,864 KB
testcase_06 AC 283 ms
91,144 KB
testcase_07 AC 51 ms
66,236 KB
testcase_08 AC 69 ms
76,260 KB
testcase_09 AC 252 ms
90,932 KB
testcase_10 AC 227 ms
88,580 KB
testcase_11 AC 82 ms
76,424 KB
testcase_12 AC 213 ms
88,660 KB
testcase_13 AC 63 ms
75,488 KB
testcase_14 AC 281 ms
91,028 KB
testcase_15 AC 249 ms
89,092 KB
testcase_16 AC 271 ms
90,908 KB
testcase_17 AC 121 ms
86,228 KB
testcase_18 AC 65 ms
84,084 KB
testcase_19 AC 126 ms
80,400 KB
testcase_20 AC 163 ms
83,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [(int(x), i) for i, x in enumerate(input().split())]
a.sort()
ans = [0] * (n - 1)
for i, (aj, j) in enumerate(a, 1):
    if i - aj < 0:
        print('NO')
        exit()
    ans[j] = i - aj + 1
print('YES')
print(*ans, sep='\n')
0