結果

問題 No.646 逆ピラミッド
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:54:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 12,378 ms
コンパイル使用メモリ 426,744 KB
実行使用メモリ 51,320 KB
最終ジャッジ日時 2024-05-05 23:24:28
合計ジャッジ時間 15,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
51,248 KB
testcase_01 AC 281 ms
51,320 KB
testcase_02 AC 262 ms
50,944 KB
testcase_03 AC 276 ms
50,972 KB
testcase_04 AC 277 ms
51,312 KB
testcase_05 AC 278 ms
50,952 KB
testcase_06 AC 290 ms
51,160 KB
testcase_07 AC 266 ms
51,056 KB
testcase_08 AC 266 ms
50,928 KB
testcase_09 AC 261 ms
50,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val d = readLine()!!.toInt()
    for(it in d downTo 1) {
        println("$d".repeat(it))
    }
}
0