結果

問題 No.11 カードマッチ
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-18 15:09:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 670 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 75,816 KB
実行使用メモリ 54,764 KB
最終ジャッジ日時 2024-06-24 12:45:22
合計ジャッジ時間 7,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,360 KB
testcase_01 AC 131 ms
54,168 KB
testcase_02 AC 131 ms
54,156 KB
testcase_03 AC 136 ms
54,216 KB
testcase_04 AC 146 ms
54,440 KB
testcase_05 AC 134 ms
54,292 KB
testcase_06 AC 158 ms
54,340 KB
testcase_07 AC 177 ms
54,340 KB
testcase_08 AC 177 ms
54,764 KB
testcase_09 AC 178 ms
54,052 KB
testcase_10 AC 145 ms
54,252 KB
testcase_11 AC 146 ms
54,444 KB
testcase_12 AC 146 ms
54,104 KB
testcase_13 AC 149 ms
54,416 KB
testcase_14 AC 148 ms
54,352 KB
testcase_15 AC 148 ms
54,224 KB
testcase_16 AC 151 ms
54,256 KB
testcase_17 AC 149 ms
54,336 KB
testcase_18 AC 150 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class No11 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long W = sc.nextLong(); //マークの種類
		long H = sc.nextLong();	 //数字の最大値
		long N = sc.nextLong(); //持ってるカードの枚数
		List<Integer> S = new ArrayList<Integer>();
		List<Integer> K = new ArrayList<Integer>();
		for(int i = 0;i < N;i++) {
			int s = sc.nextInt();
			int k = sc.nextInt();
			if(S.indexOf(s) == -1) {
				S.add(s);
			}
			if(K.indexOf(k) == -1) {
				K.add(k);
			}
		}
		
		System.out.println(W*H - ((W-S.size())*(H-K.size())) - N);
	}
}
0