結果

問題 No.1373 Directed Operations
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-05 22:29:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,092 KB
最終ジャッジ日時 2024-07-02 13:03:09
合計ジャッジ時間 4,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 172 ms
27,912 KB
testcase_03 WA -
testcase_04 AC 63 ms
20,612 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 291 ms
28,396 KB
testcase_07 AC 35 ms
11,136 KB
testcase_08 AC 52 ms
12,672 KB
testcase_09 AC 63 ms
20,484 KB
testcase_10 AC 58 ms
19,000 KB
testcase_11 AC 37 ms
12,928 KB
testcase_12 WA -
testcase_13 AC 33 ms
11,776 KB
testcase_14 AC 323 ms
31,028 KB
testcase_15 AC 275 ms
28,480 KB
testcase_16 AC 324 ms
31,092 KB
testcase_17 AC 153 ms
24,116 KB
testcase_18 AC 94 ms
18,560 KB
testcase_19 AC 116 ms
17,536 KB
testcase_20 AC 159 ms
20,252 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
print("YES")
print(*ans, sep="\n")
0