結果
問題 | No.11 カードマッチ |
ユーザー | くわい |
提出日時 | 2015-11-07 00:23:44 |
言語 | Scala(Beta) (3.4.0) |
結果 |
AC
|
実行時間 | 894 ms / 5,000 ms |
コード長 | 705 bytes |
コンパイル時間 | 13,330 ms |
コンパイル使用メモリ | 254,864 KB |
実行使用メモリ | 63,744 KB |
最終ジャッジ日時 | 2024-06-11 10:30:05 |
合計ジャッジ時間 | 27,762 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 807 ms
62,980 KB |
testcase_01 | AC | 815 ms
63,344 KB |
testcase_02 | AC | 818 ms
63,356 KB |
testcase_03 | AC | 822 ms
63,576 KB |
testcase_04 | AC | 842 ms
63,624 KB |
testcase_05 | AC | 804 ms
63,156 KB |
testcase_06 | AC | 825 ms
63,620 KB |
testcase_07 | AC | 832 ms
63,636 KB |
testcase_08 | AC | 837 ms
63,632 KB |
testcase_09 | AC | 894 ms
63,744 KB |
testcase_10 | AC | 834 ms
63,652 KB |
testcase_11 | AC | 840 ms
63,596 KB |
testcase_12 | AC | 833 ms
63,644 KB |
testcase_13 | AC | 844 ms
63,736 KB |
testcase_14 | AC | 843 ms
63,624 KB |
testcase_15 | AC | 832 ms
63,676 KB |
testcase_16 | AC | 838 ms
63,476 KB |
testcase_17 | AC | 862 ms
63,728 KB |
testcase_18 | AC | 848 ms
63,656 KB |
ソースコード
import java.util.Scanner object Problem011 { def proc(markKinds: Int, suitKinds: Int, handNum: Int, hand: Seq[(Int, Int)]): Long = { val handMarkNum = hand.map(x => x._1).distinct.size val handSuitNum = hand.map(x => x._2).distinct.size val matchCount: Long = handMarkNum * suitKinds + handSuitNum * markKinds val doubleCount: Long = handMarkNum * handSuitNum matchCount - doubleCount - handNum } def main(args: Array[String]) = { val sc = new Scanner(System.in) val w = sc.nextInt() val h = sc.nextInt() val n = sc.nextInt() val sk: Seq[(Int, Int)] = Seq.fill(n)(sc.nextInt(), sc.nextInt()) val result = proc(w, h, n, sk) println(result) } }