結果

問題 No.11 カードマッチ
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-20 13:02:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 776 bytes
コンパイル時間 3,084 ms
コンパイル使用メモリ 79,116 KB
実行使用メモリ 57,136 KB
最終ジャッジ日時 2024-11-19 02:21:25
合計ジャッジ時間 7,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,904 KB
testcase_01 AC 138 ms
53,928 KB
testcase_02 AC 138 ms
53,912 KB
testcase_03 AC 138 ms
53,880 KB
testcase_04 AC 203 ms
56,876 KB
testcase_05 AC 136 ms
54,052 KB
testcase_06 AC 186 ms
56,688 KB
testcase_07 AC 168 ms
54,132 KB
testcase_08 AC 184 ms
57,136 KB
testcase_09 AC 194 ms
57,020 KB
testcase_10 AC 197 ms
56,876 KB
testcase_11 AC 201 ms
57,036 KB
testcase_12 AC 191 ms
56,768 KB
testcase_13 AC 196 ms
57,100 KB
testcase_14 AC 193 ms
57,012 KB
testcase_15 AC 160 ms
54,040 KB
testcase_16 AC 160 ms
54,276 KB
testcase_17 AC 155 ms
54,192 KB
testcase_18 AC 170 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int w=scanner.nextInt();
		int h=scanner.nextInt();
		int n=scanner.nextInt();
		Map<Integer,Integer>map=new HashMap<>();
		Set<Integer>set=new HashSet<>();
		for(int i=0;i<n;i++){
			int s=scanner.nextInt();
			int k=scanner.nextInt();
			if (map.containsKey(s)) {
				map.put(s, map.get(s) + 1);
			} else {
				map.put(s, 1);
			}
			set.add(k);
		}
		int mat=0;
		for(int i=1;i<=w;i++){
			if(map.containsKey(i)){
				mat+=h-map.get(i);
			}else{
				mat+=set.size();
			}
		}
		System.out.println(mat);
	}
}
0