結果
問題 | No.1338 Giant Class |
ユーザー | 箱星 |
提出日時 | 2021-01-15 21:51:23 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 808 ms / 2,000 ms |
コード長 | 896 bytes |
コンパイル時間 | 15,173 ms |
コンパイル使用メモリ | 436,060 KB |
実行使用メモリ | 90,580 KB |
最終ジャッジ日時 | 2024-05-04 23:29:45 |
合計ジャッジ時間 | 29,977 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 291 ms
49,680 KB |
testcase_01 | AC | 290 ms
49,924 KB |
testcase_02 | AC | 669 ms
84,196 KB |
testcase_03 | AC | 296 ms
50,024 KB |
testcase_04 | AC | 305 ms
50,048 KB |
testcase_05 | AC | 313 ms
50,208 KB |
testcase_06 | AC | 670 ms
78,744 KB |
testcase_07 | AC | 756 ms
90,580 KB |
testcase_08 | AC | 642 ms
77,020 KB |
testcase_09 | AC | 633 ms
75,368 KB |
testcase_10 | AC | 762 ms
90,560 KB |
testcase_11 | AC | 450 ms
55,824 KB |
testcase_12 | AC | 699 ms
86,308 KB |
testcase_13 | AC | 650 ms
78,260 KB |
testcase_14 | AC | 472 ms
59,680 KB |
testcase_15 | AC | 504 ms
63,048 KB |
testcase_16 | AC | 441 ms
54,848 KB |
testcase_17 | AC | 638 ms
78,360 KB |
testcase_18 | AC | 474 ms
59,724 KB |
testcase_19 | AC | 532 ms
64,968 KB |
testcase_20 | AC | 808 ms
90,280 KB |
testcase_21 | AC | 800 ms
90,380 KB |
testcase_22 | AC | 794 ms
90,476 KB |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val h = nextLong() val w = nextLong() val q = nextInt() val map = mutableMapOf<Long, Long>() var ans = h * w for (i in 0 until q) { val y = nextLong() val x = nextLong() ans -= max(0, h - y + 1 - (map[x] ?: 0)) map[x] = max(map[x] ?: 0, h - y + 1) println(ans) } } fun main() { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine()!! fun nextDouble() = next().toDouble() // endregion