結果

問題 No.1373 Directed Operations
ユーザー Kiri8128Kiri8128
提出日時 2021-02-05 22:39:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-07-02 13:18:09
合計ジャッジ時間 3,894 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 89 ms
95,104 KB
testcase_03 AC 83 ms
94,720 KB
testcase_04 AC 70 ms
88,832 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 188 ms
94,464 KB
testcase_07 AC 46 ms
61,056 KB
testcase_08 AC 55 ms
65,152 KB
testcase_09 AC 159 ms
90,624 KB
testcase_10 AC 155 ms
93,952 KB
testcase_11 AC 65 ms
67,584 KB
testcase_12 AC 135 ms
84,608 KB
testcase_13 AC 51 ms
61,952 KB
testcase_14 AC 187 ms
94,720 KB
testcase_15 AC 171 ms
93,952 KB
testcase_16 AC 188 ms
94,968 KB
testcase_17 AC 104 ms
93,184 KB
testcase_18 AC 63 ms
78,592 KB
testcase_19 AC 93 ms
76,928 KB
testcase_20 AC 126 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = sorted([(int(a), i) for i, a in enumerate(input().split())], key = lambda x: -x[0])
ANS = [-1] * (N - 1)
for j, (a, i) in enumerate(A):
    if N - 1 - j - a < 0:
        print("NO")
        break
    ANS[i] = str(N - j - a)
else:
    print("YES")
    print("\n".join(ANS))
0