結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー 箱星箱星
提出日時 2021-07-30 21:01:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 13,685 ms
コンパイル使用メモリ 432,160 KB
実行使用メモリ 51,008 KB
最終ジャッジ日時 2024-09-15 21:31:46
合計ジャッジ時間 17,621 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
50,840 KB
testcase_01 AC 304 ms
50,928 KB
testcase_02 AC 305 ms
50,876 KB
testcase_03 AC 300 ms
50,948 KB
testcase_04 AC 301 ms
50,820 KB
testcase_05 AC 301 ms
50,768 KB
testcase_06 AC 303 ms
50,836 KB
testcase_07 AC 301 ms
51,008 KB
testcase_08 AC 299 ms
50,932 KB
testcase_09 AC 301 ms
50,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:9: warning: variable 'n' is never used
    val n = nextInt()
        ^

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val c = Array(9) { nextInt() }
    for (i in 8 downTo 0) {
        print(('1' + i).toString().repeat(c[i]))
    }
    println()
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0