結果

問題 No.1373 Directed Operations
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-02-05 21:28:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-07-02 11:40:34
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 106 ms
90,624 KB
testcase_03 AC 91 ms
90,624 KB
testcase_04 AC 94 ms
91,392 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 304 ms
91,776 KB
testcase_07 AC 56 ms
63,616 KB
testcase_08 AC 82 ms
76,032 KB
testcase_09 AC 300 ms
91,392 KB
testcase_10 AC 261 ms
89,472 KB
testcase_11 AC 105 ms
77,184 KB
testcase_12 AC 255 ms
88,832 KB
testcase_13 AC 78 ms
75,392 KB
testcase_14 AC 319 ms
91,264 KB
testcase_15 AC 284 ms
89,472 KB
testcase_16 AC 315 ms
91,520 KB
testcase_17 AC 140 ms
86,784 KB
testcase_18 AC 73 ms
79,232 KB
testcase_19 AC 148 ms
80,896 KB
testcase_20 AC 190 ms
83,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N = int(stdin.readline())
a = list(map(int,stdin.readline().split()))

b = [(a[i],i) for i in range(N-1)]
b.sort()

ans = [None] * (N-1)

for lp in range(N-1):

    ai,i = b[lp]

    if ai > lp+1:
        print ("NO")
        sys.exit()
    else:
        ans[i] = lp+2-ai

print ("YES")
print ("\n".join(map(str,ans)))
0