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