結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー pyt-314
提出日時 2023-05-21 17:38:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-21 19:27:01
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
c1,c2,c3,c4,c5,c6,c7,c8,c9 = map(int,input().split())
print("9"*c9+"8"*c8+"7"*c7+"6"*c6+"5"*c5+"4"*c4+"3"*c3+"2"*c2+"1"*c1)
0