結果

問題 No.988 N×Mマス計算(総和)
ユーザー rhincodon66rhincodon66
提出日時 2020-02-14 21:36:16
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 493 bytes
コンパイル時間 13,299 ms
コンパイル使用メモリ 434,152 KB
実行使用メモリ 94,832 KB
最終ジャッジ日時 2024-07-06 07:02:06
合計ジャッジ時間 17,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
60,056 KB
testcase_01 AC 277 ms
94,832 KB
testcase_02 AC 292 ms
63,680 KB
testcase_03 AC 293 ms
56,924 KB
testcase_04 AC 297 ms
56,904 KB
testcase_05 AC 288 ms
56,728 KB
testcase_06 AC 289 ms
56,648 KB
testcase_07 AC 290 ms
56,748 KB
testcase_08 AC 287 ms
56,808 KB
testcase_09 AC 282 ms
56,980 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun main(args:Array<String>){
    val (n,m,k) = 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()
    }
    var ans = 0L
    for(i in 0 until n){
        for(j in 0 until m) {
            ans += if (op == "+") a[i] + b[j] else a[i] * b[j]
            ans %= k
        }
    }
    println(ans)
}


0