結果

問題 No.2092 Conjugation
ユーザー a aa a
提出日時 2022-10-10 05:30:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,436 KB
最終ジャッジ日時 2024-06-24 01:32:02
合計ジャッジ時間 3,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 56 ms
17,928 KB
testcase_08 AC 107 ms
22,428 KB
testcase_09 AC 78 ms
19,624 KB
testcase_10 AC 83 ms
20,068 KB
testcase_11 AC 84 ms
20,416 KB
testcase_12 AC 77 ms
19,580 KB
testcase_13 AC 63 ms
18,432 KB
testcase_14 AC 61 ms
18,176 KB
testcase_15 AC 76 ms
19,544 KB
testcase_16 AC 128 ms
23,664 KB
testcase_17 AC 130 ms
21,612 KB
testcase_18 AC 136 ms
25,436 KB
testcase_19 AC 84 ms
12,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=list(map(int,input().split()))
l.append(0)
b=[]
for i in range(n):
    b.extend([i+1]*(l[i]-l[i+1]))
print(' '.join(list(map(str,b[::-1]))))
0