結果

問題 No.11 カードマッチ
ユーザー spaciaspacia
提出日時 2016-01-08 23:56:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 930 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 77,440 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-10-11 20:00:24
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,792 KB
testcase_01 AC 50 ms
36,644 KB
testcase_02 AC 50 ms
36,848 KB
testcase_03 AC 50 ms
36,712 KB
testcase_04 AC 71 ms
40,984 KB
testcase_05 AC 51 ms
37,032 KB
testcase_06 AC 70 ms
41,852 KB
testcase_07 AC 54 ms
36,664 KB
testcase_08 AC 68 ms
39,112 KB
testcase_09 AC 74 ms
41,820 KB
testcase_10 AC 70 ms
40,660 KB
testcase_11 AC 68 ms
40,100 KB
testcase_12 AC 71 ms
40,472 KB
testcase_13 AC 67 ms
39,592 KB
testcase_14 AC 71 ms
39,872 KB
testcase_15 AC 53 ms
36,564 KB
testcase_16 AC 52 ms
36,488 KB
testcase_17 AC 52 ms
37,008 KB
testcase_18 AC 53 ms
36,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int markCnt = Integer.parseInt(br.readLine());
		int maxNum = Integer.parseInt(br.readLine());
		int n = Integer.parseInt(br.readLine());
		int[] marks = new int[markCnt + 1];
		ArrayList<Integer> numList = new ArrayList<Integer>();
		
		for (int i = 0; i < n; i++) {
			String[] line = br.readLine().split(" ");
			int mark = Integer.parseInt(line[0]);
			int num = Integer.parseInt(line[1]);
			
			marks[mark]++;
			if (!numList.contains(num)) {
				numList.add(num);
			}
		}
		
		long ans = 0;
		for (int i = 1; i <= markCnt; i++) {
			if (marks[i] == 0) {
				ans += numList.size();
			} else {
				ans += maxNum - marks[i];
			}
		}
		
		out(ans);
		
	}
}
0