結果
| 問題 | No.1628 Sorting Integers (MAX of M) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-06 02:28:17 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 62 ms / 2,000 ms |
| + 960µs | |
| コード長 | 143 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 96,112 KB |
| 実行使用メモリ | 78,720 KB |
| 最終ジャッジ日時 | 2026-08-18 21:57:26 |
| 合計ジャッジ時間 | 2,501 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
ソースコード
N = int(input())
C = list(map(int,input().split()))
ans = []
for i in range(8, -1, -1):
ans.append(str(i + 1) * C[i])
print("".join(ans))