結果

問題 No.11 カードマッチ
ユーザー tsunabittsunabit
提出日時 2019-08-16 22:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 3,528 ms
コンパイル使用メモリ 80,252 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-09-22 19:07:33
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,208 KB
testcase_01 AC 131 ms
53,948 KB
testcase_02 AC 128 ms
54,216 KB
testcase_03 AC 130 ms
54,204 KB
testcase_04 AC 142 ms
54,340 KB
testcase_05 AC 129 ms
53,796 KB
testcase_06 AC 143 ms
54,148 KB
testcase_07 AC 145 ms
54,020 KB
testcase_08 AC 144 ms
53,980 KB
testcase_09 AC 144 ms
54,148 KB
testcase_10 AC 139 ms
54,492 KB
testcase_11 AC 142 ms
54,044 KB
testcase_12 AC 144 ms
53,908 KB
testcase_13 AC 142 ms
54,092 KB
testcase_14 AC 144 ms
54,048 KB
testcase_15 AC 144 ms
54,268 KB
testcase_16 AC 147 ms
54,608 KB
testcase_17 AC 143 ms
54,116 KB
testcase_18 AC 151 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No11 {
	public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int w = sc.nextInt(), h = sc.nextInt(), n = sc.nextInt();
    	HashSet<Integer> ma = new HashSet<Integer>();
    	HashSet<Integer> su = new HashSet<Integer>();
    	for(int i = 0; i < n; i++) {
    		ma.add(sc.nextInt());
    		su.add(sc.nextInt());
    	}
    	// マッチするマーク + マッチする数字 - 重複カウント - 手札
    	System.out.println(ma.size()*h+su.size()*w-ma.size()*su.size()-n);
	}
}
0