結果

問題 No.1373 Directed Operations
ユーザー pluto77pluto77
提出日時 2021-03-20 11:48:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,172 KB
最終ジャッジ日時 2024-11-20 20:50:32
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 186 ms
27,212 KB
testcase_03 AC 88 ms
22,392 KB
testcase_04 AC 103 ms
25,396 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 305 ms
27,712 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 55 ms
12,672 KB
testcase_09 AC 252 ms
26,012 KB
testcase_10 AC 180 ms
23,724 KB
testcase_11 AC 63 ms
13,952 KB
testcase_12 AC 157 ms
23,336 KB
testcase_13 AC 43 ms
12,160 KB
testcase_14 AC 352 ms
30,172 KB
testcase_15 AC 302 ms
27,516 KB
testcase_16 AC 350 ms
29,980 KB
testcase_17 AC 167 ms
23,556 KB
testcase_18 AC 102 ms
18,140 KB
testcase_19 AC 126 ms
17,428 KB
testcase_20 AC 175 ms
19,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1373
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