結果

問題 No.1656 Recuperation
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:19:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 13,188 ms
コンパイル使用メモリ 416,136 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2023-09-02 03:26:29
合計ジャッジ時間 13,592 ms
ジャッジサーバーID
(参考情報)
judge12 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
53,220 KB
testcase_01 AC 289 ms
52,888 KB
testcase_02 AC 305 ms
53,356 KB
testcase_03 AC 304 ms
53,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val t = readLine()!!.toInt()
    repeat(t) {
        val (a,b) = readLine()!!.split(" ").map { it.toInt() }
        println(b+(a*b))
    }
}
0