結果

問題 No.1373 Directed Operations
ユーザー gorugo30gorugo30
提出日時 2021-02-05 21:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 92,392 KB
最終ジャッジ日時 2024-07-02 11:45:26
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,444 KB
testcase_01 AC 35 ms
52,964 KB
testcase_02 AC 92 ms
90,864 KB
testcase_03 AC 71 ms
90,800 KB
testcase_04 AC 75 ms
91,808 KB
testcase_05 AC 33 ms
52,356 KB
testcase_06 AC 278 ms
91,892 KB
testcase_07 AC 50 ms
66,956 KB
testcase_08 AC 73 ms
76,576 KB
testcase_09 AC 260 ms
92,392 KB
testcase_10 AC 231 ms
89,980 KB
testcase_11 AC 83 ms
77,148 KB
testcase_12 AC 229 ms
89,596 KB
testcase_13 AC 63 ms
75,588 KB
testcase_14 AC 284 ms
92,020 KB
testcase_15 AC 250 ms
89,536 KB
testcase_16 AC 280 ms
92,268 KB
testcase_17 AC 128 ms
87,048 KB
testcase_18 AC 67 ms
84,928 KB
testcase_19 AC 136 ms
81,388 KB
testcase_20 AC 178 ms
84,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
S = [(A[i], i) for i in range(N - 1)]
S.sort()
X = [-1] * (N - 1)
for i in range(1, N):
    a, x = S[i - 1]
    if i - a < 0:
        print("NO")
        exit()
    X[x] = i - a + 1
print("YES")
print(*X, sep = "\n")
0