結果

問題 No.988 N×Mマス計算(総和)
ユーザー rhincodon66rhincodon66
提出日時 2020-02-14 21:44:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 12,893 ms
コンパイル使用メモリ 439,396 KB
実行使用メモリ 85,156 KB
最終ジャッジ日時 2024-07-06 07:06:28
合計ジャッジ時間 24,771 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
60,180 KB
testcase_01 AC 328 ms
60,308 KB
testcase_02 AC 336 ms
60,412 KB
testcase_03 AC 331 ms
60,164 KB
testcase_04 AC 334 ms
60,100 KB
testcase_05 AC 333 ms
60,124 KB
testcase_06 AC 332 ms
60,132 KB
testcase_07 AC 340 ms
60,176 KB
testcase_08 AC 334 ms
60,040 KB
testcase_09 AC 331 ms
60,092 KB
testcase_10 AC 593 ms
70,684 KB
testcase_11 AC 565 ms
74,892 KB
testcase_12 AC 677 ms
81,000 KB
testcase_13 AC 603 ms
72,736 KB
testcase_14 AC 588 ms
72,820 KB
testcase_15 AC 479 ms
66,472 KB
testcase_16 AC 666 ms
74,836 KB
testcase_17 AC 689 ms
81,168 KB
testcase_18 AC 619 ms
76,200 KB
testcase_19 AC 682 ms
78,972 KB
testcase_20 AC 726 ms
85,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^
Main.kt:13:9: warning: variable 'suma' is never used
    val suma = a.sum() % k
        ^

ソースコード

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
    val suma = a.sum() % k
    val sumb = b.sum() % k
    for(i in 0 until n){
        ans += if (op == "+") a[i] * m else a[i] * sumb
        ans %= k
    }
    for(i in 0 until m) {
        ans += if (op == "+") b[i] * n else 0
        ans %= k
    }
    println(ans)
}
0