結果

問題 No.1373 Directed Operations
ユーザー nephrologistnephrologist
提出日時 2021-02-05 21:40:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-07-02 11:53:09
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 108 ms
97,228 KB
testcase_03 AC 85 ms
97,280 KB
testcase_04 AC 87 ms
97,884 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 305 ms
97,920 KB
testcase_07 AC 57 ms
67,328 KB
testcase_08 AC 78 ms
76,672 KB
testcase_09 AC 294 ms
97,544 KB
testcase_10 AC 253 ms
94,464 KB
testcase_11 AC 98 ms
77,804 KB
testcase_12 AC 254 ms
94,712 KB
testcase_13 AC 69 ms
76,160 KB
testcase_14 AC 320 ms
97,536 KB
testcase_15 AC 280 ms
94,720 KB
testcase_16 AC 314 ms
97,536 KB
testcase_17 AC 141 ms
91,768 KB
testcase_18 AC 81 ms
85,176 KB
testcase_19 AC 148 ms
82,560 KB
testcase_20 AC 190 ms
86,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
n = int(input())

A = list(map(int, input().split()))


now = 2
ans = [-1] * (n - 1)
kouho = []
for (idx, a) in enumerate(A):
    kouho.append((a, idx))
kouho.sort()
for a, idx in kouho:
    ans[idx] = now - a
    if ans[idx] <= 0:
        print("NO")
        exit()
    now += 1
print("YES")
for a in ans:
    print(a)

0