結果

問題 No.1373 Directed Operations
ユーザー ytftytft
提出日時 2022-03-18 10:18:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 97,792 KB
最終ジャッジ日時 2024-10-02 13:15:28
合計ジャッジ時間 4,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 106 ms
97,792 KB
testcase_03 AC 91 ms
97,788 KB
testcase_04 AC 96 ms
97,408 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 210 ms
97,536 KB
testcase_07 AC 55 ms
64,384 KB
testcase_08 AC 65 ms
68,992 KB
testcase_09 AC 193 ms
97,568 KB
testcase_10 AC 176 ms
96,384 KB
testcase_11 AC 68 ms
66,688 KB
testcase_12 AC 174 ms
96,080 KB
testcase_13 AC 54 ms
63,616 KB
testcase_14 AC 222 ms
97,792 KB
testcase_15 AC 202 ms
96,512 KB
testcase_16 AC 221 ms
97,320 KB
testcase_17 AC 111 ms
91,520 KB
testcase_18 AC 81 ms
85,108 KB
testcase_19 AC 113 ms
84,132 KB
testcase_20 AC 134 ms
87,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
temp=input().split()
A=[[int(temp[i]),i] for i in range(N-1)]
A=sorted(A,key=lambda x:x[0])
ans=[0 for i in range(N-1)]
for i in range(N-1):
	ans[A[i][1]]=i-A[i][0]+2
if min(ans)<1:
	print('NO')
else:
	print('YES')
	for i in ans:
		print(i)
0