結果

問題 No.11 カードマッチ
ユーザー shinshin
提出日時 2022-05-17 18:41:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 1,185 bytes
コンパイル時間 3,764 ms
コンパイル使用メモリ 78,776 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-09-15 13:35:58
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,140 KB
testcase_01 AC 51 ms
36,788 KB
testcase_02 AC 51 ms
37,144 KB
testcase_03 AC 55 ms
36,540 KB
testcase_04 AC 53 ms
37,092 KB
testcase_05 AC 52 ms
36,864 KB
testcase_06 AC 56 ms
36,916 KB
testcase_07 AC 55 ms
37,060 KB
testcase_08 AC 55 ms
37,128 KB
testcase_09 AC 57 ms
37,044 KB
testcase_10 AC 56 ms
36,964 KB
testcase_11 AC 57 ms
36,976 KB
testcase_12 AC 55 ms
37,048 KB
testcase_13 AC 55 ms
36,916 KB
testcase_14 AC 56 ms
37,096 KB
testcase_15 AC 55 ms
37,132 KB
testcase_16 AC 55 ms
37,132 KB
testcase_17 AC 55 ms
37,096 KB
testcase_18 AC 55 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No11 {

	public static void main(String[] args) throws IOException{
		//カードマッチ
		String[] text = readStr();
		int W = Integer.parseInt(text[0]);
		int H = Integer.parseInt(text[1]);
		int N = Integer.parseInt(text[2]);
		int S , K;
		Long count = 0l;
		ArrayList<Integer> wlist = new ArrayList<>() , hlist = new ArrayList<>();
		
		for(int i = 0;i < N;i++) {
			S = Integer.parseInt(text[i + 3].split(" ")[0]);
			K = Integer.parseInt(text[i + 3].split(" ")[1]);
			
			if(!wlist.contains(S)) wlist.add(S);
			if(!hlist.contains(K)) hlist.add(K);
			
		}
		count = Math.multiplyExact((long)(W - wlist.size()), H - hlist.size());
		System.out.println(Math.multiplyExact((long)W, H) - count - N);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0