結果

問題 No.1423 Triangle of Multiples
ユーザー leetcoincollectorleetcoincollector
提出日時 2021-03-12 21:44:46
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 111 bytes
コンパイル時間 12,231 ms
コンパイル使用メモリ 432,188 KB
実行使用メモリ 57,292 KB
最終ジャッジ日時 2024-10-14 12:02:15
合計ジャッジ時間 14,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
  val (a,b,c) = readLine()!!.split(" ").map{it.toLong()}
  val x = a * b * c
println("$x $x $x")
}
0