結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | rhincodon66 |
提出日時 | 2020-02-14 21:34:24 |
言語 | Kotlin (2.1.0) |
結果 |
AC
|
実行時間 | 550 ms / 2,000 ms |
コード長 | 523 bytes |
コンパイル時間 | 15,211 ms |
コンパイル使用メモリ | 438,400 KB |
実行使用メモリ | 59,200 KB |
最終ジャッジ日時 | 2024-10-06 10:56:51 |
合計ジャッジ時間 | 24,105 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used fun main(args:Array<String>){ ^ Main.kt:12:9: warning: variable 'ans' is never used val ans = Array(n){LongArray(m)} ^
ソースコード
import java.util.* fun main(args:Array<String>){ val (n,m) = readLine()!!.split(" ").map{it.toInt()} val tmp = readLine()!!.split(" ") val op = tmp[0] val b = tmp.drop(1).map{it.toLong()} val a = LongArray(n) for(i in 0 until n){ a[i] = readLine()!!.toLong() } val ans = Array(n){LongArray(m)} for(i in 0 until n){ for(j in 0 until m){ if(j != 0) print(" ") print(if(op == "+") a[i] + b[j] else a[i] * b[j]) } println() } }