結果

問題 No.1423 Triangle of Multiples
ユーザー leetcoincollectorleetcoincollector
提出日時 2021-03-12 21:47:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 811 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 12,025 ms
コンパイル使用メモリ 436,984 KB
実行使用メモリ 79,180 KB
最終ジャッジ日時 2024-04-22 12:37:53
合計ジャッジ時間 16,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
51,616 KB
testcase_01 AC 316 ms
51,744 KB
testcase_02 AC 811 ms
79,180 KB
testcase_03 AC 774 ms
72,448 KB
testcase_04 AC 768 ms
73,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {

    val T = readLine()!!.toInt()
    for(t in 0 until T) {
        val (a, b, c) = readLine()!!.split(" ").map { it.toLong() }
        val x = a * b * c
        println("$x $x $x")
    }
}
0