結果
| 問題 | No.1628 Sorting Integers (MAX of M) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-10 05:31:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 198 bytes |
| 記録 | |
| コンパイル時間 | 296 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,760 KB |
| 最終ジャッジ日時 | 2026-07-08 15:17:14 |
| 合計ジャッジ時間 | 2,447 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 6 |
ソースコード
def Main():
n=int(input())
a=list(map(int,input().split()))
a=a[::-1]
for i in range(9):
k=9-i
for _ in range(a[i]):
print(k,end="")
print()
Main()