結果

問題 No.1656 Recuperation
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:19:55
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 12,708 ms
コンパイル使用メモリ 425,912 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-06-11 10:05:32
合計ジャッジ時間 10,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
51,652 KB
testcase_01 AC 259 ms
51,720 KB
testcase_02 AC 279 ms
51,840 KB
testcase_03 AC 275 ms
51,708 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