結果

問題 No.2092 Conjugation
ユーザー titiatitia
提出日時 2022-10-07 21:27:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,636 KB
最終ジャッジ日時 2024-06-12 06:03:59
合計ジャッジ時間 2,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 96 ms
13,184 KB
testcase_08 AC 134 ms
18,068 KB
testcase_09 AC 107 ms
15,600 KB
testcase_10 AC 112 ms
16,208 KB
testcase_11 AC 116 ms
16,340 KB
testcase_12 AC 111 ms
15,580 KB
testcase_13 AC 98 ms
13,568 KB
testcase_14 AC 100 ms
13,440 KB
testcase_15 AC 108 ms
15,488 KB
testcase_16 AC 144 ms
19,648 KB
testcase_17 AC 152 ms
19,952 KB
testcase_18 AC 141 ms
20,636 KB
testcase_19 AC 62 ms
12,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

x=A[0]
ANS=[0]*x

for i in range(N):
    a=A[i]
    ANS[a-1]=i+1

for i in range(len(ANS)-1,-1,-1):
    if ANS[i]==0:
        ANS[i]=ANS[i+1]

print(*ANS)
0