結果

問題 No.1291 小手調べ
ユーザー face4face4
提出日時 2021-04-13 10:07:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 12,313 ms
コンパイル使用メモリ 430,500 KB
実行使用メモリ 52,840 KB
最終ジャッジ日時 2024-06-29 04:19:19
合計ジャッジ時間 12,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,904 KB
testcase_01 AC 330 ms
50,800 KB
testcase_02 AC 317 ms
50,660 KB
testcase_03 AC 436 ms
52,840 KB
testcase_04 AC 275 ms
49,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    repeat(n){
        readLine()!!.toInt().let{
            if(it == 1){
                println(10)
            }else{
                print(9)
                repeat(it-1){
                    print(0)
                }
                println()
            }
        }
    }
}
0