結果

問題 No.11 カードマッチ
ユーザー shinwisteriashinwisteria
提出日時 2017-03-31 21:04:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 886 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 78,540 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-07 04:47:55
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,004 KB
testcase_01 AC 113 ms
41,212 KB
testcase_02 AC 116 ms
40,992 KB
testcase_03 AC 125 ms
41,020 KB
testcase_04 AC 142 ms
41,368 KB
testcase_05 AC 129 ms
41,468 KB
testcase_06 AC 137 ms
41,392 KB
testcase_07 AC 147 ms
41,360 KB
testcase_08 AC 138 ms
41,276 KB
testcase_09 AC 138 ms
41,340 KB
testcase_10 AC 138 ms
41,408 KB
testcase_11 AC 136 ms
41,564 KB
testcase_12 AC 137 ms
41,376 KB
testcase_13 AC 139 ms
41,592 KB
testcase_14 AC 149 ms
41,252 KB
testcase_15 AC 135 ms
41,472 KB
testcase_16 AC 139 ms
41,564 KB
testcase_17 AC 138 ms
41,248 KB
testcase_18 AC 142 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;
public class Cardmatch {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int W = s.nextInt(),H = s.nextInt(),N = s.nextInt();
		int[] S = new int[N];
		int[] K = new int[N];
		TreeSet<Integer> Mark = new TreeSet<>();
		TreeSet<Integer> Number = new TreeSet<>();
		for(int i = 0;i < N ;i++){
			S[i] = s.nextInt();
			K[i] = s.nextInt();
		}
		s.close();
		long count = 0;
		for(int i = 0;i < N;i++){
			if(Mark.contains(S[i]) && Number.contains(K[i])){
				count--;
			}else if(Mark.contains(S[i])){
				count += (W - Mark.size()-1);
				Number.add(K[i]);
			}else if(Number.contains(K[i])){
				count += (H - Number.size()-1);
				Mark.add(S[i]);
			}else{
				count += (W-Mark.size() + H-Number.size() -2);
				Mark.add(S[i]);
				Number.add(K[i]);
			}
		}
		System.out.println(count);
		

	}

}
0