結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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