結果
| 問題 | 
                            No.1423 Triangle of Multiples
                             | 
                    
| コンテスト | |
| ユーザー | 
                             leetcoincollector
                         | 
                    
| 提出日時 | 2021-03-12 21:44:46 | 
| 言語 | Kotlin  (2.1.0)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 111 bytes | 
| コンパイル時間 | 12,231 ms | 
| コンパイル使用メモリ | 432,188 KB | 
| 実行使用メモリ | 57,292 KB | 
| 最終ジャッジ日時 | 2024-10-14 12:02:15 | 
| 合計ジャッジ時間 | 14,872 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 1 | 
| other | RE * 4 | 
ソースコード
fun main() {
  val (a,b,c) = readLine()!!.split(" ").map{it.toLong()}
  val x = a * b * c
println("$x $x $x")
}
            
            
            
        
            
leetcoincollector