結果
問題 | No.2092 Conjugation |
ユーザー |
|
提出日時 | 2022-10-10 05:12:31 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 130 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 20,840 KB |
最終ジャッジ日時 | 2024-06-24 01:17:53 |
合計ジャッジ時間 | 1,928 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 18 |
ソースコード
n=int(input()) l=list(map(int,input().split())) l=l.append(0) b=[[n-i]*(l[i]-l[i+1]) for i in range(n)] print(map("".join,str(b)))