結果

問題 No.1373 Directed Operations
ユーザー 👑 rin204rin204
提出日時 2022-01-18 05:52:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-05-02 19:18:15
合計ジャッジ時間 5,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 98 ms
96,256 KB
testcase_03 AC 81 ms
96,256 KB
testcase_04 AC 84 ms
97,664 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 276 ms
97,408 KB
testcase_07 AC 58 ms
66,560 KB
testcase_08 AC 78 ms
76,416 KB
testcase_09 AC 269 ms
97,664 KB
testcase_10 AC 237 ms
94,208 KB
testcase_11 AC 90 ms
77,824 KB
testcase_12 AC 226 ms
93,952 KB
testcase_13 AC 68 ms
75,648 KB
testcase_14 AC 288 ms
97,280 KB
testcase_15 AC 258 ms
94,336 KB
testcase_16 AC 284 ms
97,152 KB
testcase_17 AC 132 ms
91,136 KB
testcase_18 AC 77 ms
86,784 KB
testcase_19 AC 139 ms
82,688 KB
testcase_20 AC 172 ms
86,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A = [(a, i) for i, a in enumerate(A)]
A.sort()
ans = [-1] * (n - 1)
for j, (a, i) in enumerate(A, 1):
    if a > j:
        print("NO")
        exit()
    ans[i] = (j + 1 - a)
print("YES")
print(*ans, sep="\n")
0