結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
60,536 KB
testcase_01 AC 258 ms
94,596 KB
testcase_02 AC 264 ms
63,772 KB
testcase_03 AC 260 ms
56,800 KB
testcase_04 AC 262 ms
56,944 KB
testcase_05 AC 265 ms
56,952 KB
testcase_06 AC 265 ms
56,872 KB
testcase_07 AC 269 ms
56,836 KB
testcase_08 AC 282 ms
56,792 KB
testcase_09 AC 258 ms
56,876 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