結果

問題 No.1373 Directed Operations
ユーザー H20H20
提出日時 2021-02-05 22:31:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 99,504 KB
最終ジャッジ日時 2024-07-02 13:06:58
合計ジャッジ時間 4,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,820 KB
testcase_01 AC 35 ms
52,800 KB
testcase_02 AC 113 ms
99,224 KB
testcase_03 AC 83 ms
99,504 KB
testcase_04 AC 86 ms
98,716 KB
testcase_05 AC 32 ms
52,476 KB
testcase_06 AC 263 ms
98,676 KB
testcase_07 AC 51 ms
66,620 KB
testcase_08 AC 65 ms
72,328 KB
testcase_09 AC 170 ms
99,000 KB
testcase_10 AC 150 ms
97,552 KB
testcase_11 AC 60 ms
69,340 KB
testcase_12 AC 145 ms
97,396 KB
testcase_13 AC 49 ms
64,552 KB
testcase_14 AC 271 ms
98,884 KB
testcase_15 AC 251 ms
97,352 KB
testcase_16 AC 282 ms
98,908 KB
testcase_17 AC 135 ms
96,384 KB
testcase_18 AC 81 ms
86,548 KB
testcase_19 AC 129 ms
85,008 KB
testcase_20 AC 180 ms
90,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())-1
A = list(map(int, input().split())) 
L = [[0] * 3 for i in range(N)]
for i in range(N):
    L[i][0]=A[i]
    L[i][1]=i
L = sorted(L, key=lambda x: x[0])  #[0]に注目してソート
for i in range(N):
    if L[i][0]>i+1:
        print('NO')
        exit()
    L[i][2]=i+2-L[i][0]
L = sorted(L, key=lambda x: x[1])  #[1]に注目してソート
print('YES')
for i in range(N):
    print(L[i][2])
0