結果

問題 No.987 N×Mマス計算(基本)
ユーザー rhincodon66rhincodon66
提出日時 2020-02-14 21:34:24
言語 Kotlin
(1.9.23)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
56,736 KB
testcase_01 AC 319 ms
56,936 KB
testcase_02 AC 505 ms
58,888 KB
testcase_03 AC 373 ms
57,272 KB
testcase_04 AC 511 ms
59,060 KB
testcase_05 AC 499 ms
59,108 KB
testcase_06 AC 502 ms
59,200 KB
testcase_07 AC 385 ms
57,156 KB
testcase_08 AC 360 ms
56,972 KB
testcase_09 AC 389 ms
57,088 KB
testcase_10 AC 363 ms
57,220 KB
testcase_11 AC 513 ms
58,892 KB
testcase_12 AC 521 ms
58,788 KB
testcase_13 AC 400 ms
57,152 KB
testcase_14 AC 357 ms
57,116 KB
testcase_15 AC 399 ms
57,240 KB
testcase_16 AC 541 ms
58,892 KB
testcase_17 AC 506 ms
58,872 KB
testcase_18 AC 520 ms
58,876 KB
testcase_19 AC 550 ms
58,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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)}
        ^

ソースコード

diff #

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()
    }
}


0