結果

問題 No.1338 Giant Class
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-01-15 21:58:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,641 ms / 2,000 ms
コード長 1,216 bytes
コンパイル時間 13,787 ms
コンパイル使用メモリ 456,064 KB
実行使用メモリ 106,824 KB
最終ジャッジ日時 2024-11-26 14:39:00
合計ジャッジ時間 39,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
59,428 KB
testcase_01 AC 326 ms
59,484 KB
testcase_02 AC 1,455 ms
99,972 KB
testcase_03 AC 329 ms
59,136 KB
testcase_04 AC 379 ms
59,932 KB
testcase_05 AC 429 ms
59,944 KB
testcase_06 AC 1,237 ms
106,264 KB
testcase_07 AC 1,374 ms
106,644 KB
testcase_08 AC 1,322 ms
106,424 KB
testcase_09 AC 1,301 ms
104,044 KB
testcase_10 AC 1,641 ms
106,484 KB
testcase_11 AC 597 ms
77,916 KB
testcase_12 AC 1,317 ms
106,316 KB
testcase_13 AC 1,226 ms
104,092 KB
testcase_14 AC 684 ms
92,264 KB
testcase_15 AC 798 ms
92,436 KB
testcase_16 AC 635 ms
75,996 KB
testcase_17 AC 1,184 ms
106,264 KB
testcase_18 AC 703 ms
92,256 KB
testcase_19 AC 864 ms
92,636 KB
testcase_20 AC 1,497 ms
106,824 KB
testcase_21 AC 1,503 ms
106,756 KB
testcase_22 AC 1,559 ms
106,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

import kotlin.math.*
import java.util.*

class Main(private val args : Array<String>) : Runnable {
    override fun run() {
        solve(args)
    }
    private fun solve(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
        Scanner(System.`in`).use { sc ->
            val H = sc.nextInt()
            val W = sc.nextInt()
            val Q = sc.nextInt()
            val map = HashMap<Int, Int>()
            var ans = H.toLong() * W
            repeat(Q){
                val Y = sc.nextInt()
                val X = sc.nextInt()
                if (map.containsKey(X)) {
                    val v = map[X]!!
                    ans -= max(0, v - Y)
                    map[X] = min(v, Y)
                } else {
                    ans -= H - Y + 1
                    map[X] = Y
                }
                println(ans)
            }
        }
    }
}

/** 確保するメモリの大きさ(単位: MB)  */
private const val MEMORY: Long = 64

fun main(args: Array<String>) {
    Thread.setDefaultUncaughtExceptionHandler { _: Thread?, e: Throwable ->
        e.printStackTrace()
        System.exit(1)
    }
    Thread(null, Main(args = args), "", MEMORY * 1048576L).start()
}
0