結果

問題 No.1373 Directed Operations
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-05 22:31:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,376 KB
最終ジャッジ日時 2024-07-02 13:04:11
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 193 ms
28,032 KB
testcase_03 AC 141 ms
25,476 KB
testcase_04 AC 63 ms
20,868 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 308 ms
28,720 KB
testcase_07 AC 34 ms
11,264 KB
testcase_08 AC 53 ms
12,672 KB
testcase_09 AC 62 ms
20,552 KB
testcase_10 AC 58 ms
19,212 KB
testcase_11 AC 37 ms
12,672 KB
testcase_12 AC 155 ms
23,340 KB
testcase_13 AC 33 ms
11,776 KB
testcase_14 AC 349 ms
31,284 KB
testcase_15 AC 311 ms
28,736 KB
testcase_16 AC 348 ms
31,376 KB
testcase_17 AC 167 ms
24,120 KB
testcase_18 AC 100 ms
18,560 KB
testcase_19 AC 120 ms
17,792 KB
testcase_20 AC 165 ms
20,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
if not n - 1 <= sum(a) <= n * (n - 1) // 2:
    exit(print("NO"))
a2 = [(a[i], i) for i in range(n - 1)]
a2.sort()
ans = [0] * (n - 1)
for i in range(1, n)[::-1]:
    ans[a2[i - 1][1]] = i - a2[i - 1][0] + 1
    if i - a2[i - 1][0] + 1 <= 0:
        exit(print("NO"))
print("YES")
print(*ans, sep="\n")
0