結果

問題 No.1373 Directed Operations
ユーザー convexineqconvexineq
提出日時 2021-02-05 21:37:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-07-02 11:51:10
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,328 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 92 ms
97,280 KB
testcase_03 AC 65 ms
89,888 KB
testcase_04 AC 71 ms
91,904 KB
testcase_05 AC 35 ms
51,328 KB
testcase_06 AC 172 ms
95,360 KB
testcase_07 AC 49 ms
63,488 KB
testcase_08 AC 58 ms
68,992 KB
testcase_09 AC 151 ms
93,568 KB
testcase_10 AC 135 ms
89,728 KB
testcase_11 AC 61 ms
66,432 KB
testcase_12 AC 131 ms
88,192 KB
testcase_13 AC 49 ms
62,592 KB
testcase_14 AC 170 ms
96,252 KB
testcase_15 AC 153 ms
96,256 KB
testcase_16 AC 165 ms
95,872 KB
testcase_17 AC 102 ms
93,184 KB
testcase_18 AC 70 ms
85,404 KB
testcase_19 AC 93 ms
83,968 KB
testcase_20 AC 113 ms
87,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
s = sorted(range(n-1),key = lambda i:a[i])
ans = [0]*(n-1)
for i in range(n-1):
    x = i+1-a[s[i]]
    if x < 0:
        print("NO")
        exit()
    ans[s[i]] = x+1
print("YES")
print(*ans)
0