結果

問題 No.646 逆ピラミッド
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-03 23:54:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 9,511 ms
コンパイル使用メモリ 411,432 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2023-08-18 17:56:02
合計ジャッジ時間 13,558 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 245 ms
52,680 KB
testcase_01 AC 259 ms
52,968 KB
testcase_02 AC 235 ms
52,860 KB
testcase_03 AC 253 ms
52,816 KB
testcase_04 AC 246 ms
52,852 KB
testcase_05 AC 248 ms
52,732 KB
testcase_06 AC 252 ms
54,652 KB
testcase_07 AC 237 ms
52,808 KB
testcase_08 AC 233 ms
52,724 KB
testcase_09 AC 237 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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