結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー kotatsugamekotatsugame
提出日時 2021-07-30 20:31:13
言語 Ruby
(3.2.2)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 71 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 11,288 KB
実行使用メモリ 15,328 KB
最終ジャッジ日時 2023-10-14 02:40:09
合計ジャッジ時間 2,972 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
15,108 KB
testcase_01 AC 85 ms
15,156 KB
testcase_02 AC 86 ms
15,152 KB
testcase_03 AC 83 ms
15,188 KB
testcase_04 AC 84 ms
15,072 KB
testcase_05 AC 87 ms
15,052 KB
testcase_06 AC 86 ms
15,328 KB
testcase_07 AC 84 ms
15,292 KB
testcase_08 AC 81 ms
15,004 KB
testcase_09 AC 82 ms
15,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
c=gets.split.map &:to_i
9.downto(1){|i|c[i-1].times{print i}}
puts
0