結果

問題 No.988 N×Mマス計算(総和)
ユーザー yakamotoyakamoto
提出日時 2020-02-14 21:34:10
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 2,283 bytes
コンパイル時間 17,652 ms
コンパイル使用メモリ 423,032 KB
実行使用メモリ 64,044 KB
最終ジャッジ日時 2023-09-20 11:35:43
合計ジャッジ時間 26,054 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
52,800 KB
testcase_01 AC 291 ms
53,044 KB
testcase_02 AC 293 ms
52,784 KB
testcase_03 AC 288 ms
52,796 KB
testcase_04 AC 288 ms
52,760 KB
testcase_05 AC 290 ms
52,800 KB
testcase_06 WA -
testcase_07 AC 292 ms
53,012 KB
testcase_08 AC 288 ms
52,724 KB
testcase_09 AC 286 ms
52,708 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 482 ms
56,556 KB
testcase_14 WA -
testcase_15 AC 451 ms
57,808 KB
testcase_16 AC 563 ms
60,092 KB
testcase_17 AC 588 ms
62,116 KB
testcase_18 AC 493 ms
58,632 KB
testcase_19 AC 565 ms
60,428 KB
testcase_20 AC 611 ms
63,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val M = ni()
    val K = ni()
    val op = next()
    val B = na(M).map{it.toLong()}
    val A = na(N).map{it.toLong()}

    val ans = if (op == "*") {
      B.sum() % K * A.sum()
    } else {
      B.sum() % K * N +
          A.sum() % K * M
    }
    out.println(ans % K)
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n, offset) { ni() }
  }

  private inline fun map(n: Int, offset: Int = 0, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i + offset)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun <A, B> pair(a: A, b: B) = RPair(a, b)
data class RPair<A, B>(val _1: A, val _2: B)

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0