結果

問題 No.11 カードマッチ
ユーザー バカらっくバカらっく
提出日時 2019-08-31 10:21:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 16,575 ms
コンパイル使用メモリ 439,316 KB
実行使用メモリ 51,900 KB
最終ジャッジ日時 2024-11-24 04:44:17
合計ジャッジ時間 22,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 327 ms
51,676 KB
testcase_01 AC 321 ms
51,848 KB
testcase_02 AC 323 ms
51,688 KB
testcase_03 AC 323 ms
51,788 KB
testcase_04 AC 333 ms
51,900 KB
testcase_05 AC 318 ms
51,808 KB
testcase_06 AC 335 ms
51,672 KB
testcase_07 AC 337 ms
51,720 KB
testcase_08 AC 337 ms
51,732 KB
testcase_09 AC 335 ms
51,624 KB
testcase_10 AC 336 ms
51,656 KB
testcase_11 AC 329 ms
51,788 KB
testcase_12 AC 331 ms
51,680 KB
testcase_13 AC 330 ms
51,844 KB
testcase_14 AC 333 ms
51,772 KB
testcase_15 AC 337 ms
51,800 KB
testcase_16 AC 334 ms
51,628 KB
testcase_17 AC 339 ms
51,848 KB
testcase_18 AC 333 ms
51,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
    val symbolCount = readLine()!!.toLong()
    val numberCount = readLine()!!.toLong()
    val cardCount = readLine()!!.toInt()
    val symbolList = mutableMapOf<Long, Boolean>()
    val numberList = mutableMapOf<Long, Boolean>()
    for(i in 1..cardCount) {
        val (s,k) = readLine()!!.trim().split(" ").map { it.toLong() }
        symbolList[s] = true
        numberList[k] = true
    }
    val ans = symbolList.size * numberCount + symbolCount * numberList.size - symbolList.size * numberList.size - cardCount
    println(ans)
}
0