結果

問題 No.11 カードマッチ
ユーザー core123core123
提出日時 2019-04-18 14:53:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 79,328 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-22 09:13:58
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,040 KB
testcase_01 AC 130 ms
54,120 KB
testcase_02 AC 124 ms
53,920 KB
testcase_03 AC 128 ms
54,140 KB
testcase_04 AC 140 ms
54,172 KB
testcase_05 AC 123 ms
54,132 KB
testcase_06 AC 144 ms
54,348 KB
testcase_07 AC 141 ms
54,136 KB
testcase_08 AC 141 ms
54,308 KB
testcase_09 AC 144 ms
54,312 KB
testcase_10 AC 140 ms
54,008 KB
testcase_11 AC 143 ms
54,240 KB
testcase_12 AC 143 ms
54,328 KB
testcase_13 AC 141 ms
54,152 KB
testcase_14 AC 142 ms
54,024 KB
testcase_15 AC 146 ms
54,344 KB
testcase_16 AC 142 ms
54,388 KB
testcase_17 AC 143 ms
54,012 KB
testcase_18 AC 144 ms
54,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
import static java.lang.Math.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		int w=sc.nextInt();
		int h=sc.nextInt();
		int n=sc.nextInt();
		Set<Integer> sSet=new HashSet<>();
		Set<Integer> kSet=new HashSet<>();
		for(int i=0;i<n;i++){
			sSet.add(sc.nextInt());
			kSet.add(sc.nextInt());
		}
		long ans=0;
		ans+=sSet.size()*h;
		ans+=kSet.size()*w;
		ans-=sSet.size()*kSet.size();
		ans-=n;
		put(ans);
		
	}
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0