結果

問題 No.11 カードマッチ
ユーザー holegumaholeguma
提出日時 2015-08-07 11:37:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 847 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 47,028 KB
最終ジャッジ日時 2024-10-11 19:54:23
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,588 KB
testcase_01 AC 50 ms
36,936 KB
testcase_02 AC 52 ms
36,828 KB
testcase_03 AC 51 ms
36,776 KB
testcase_04 AC 106 ms
42,844 KB
testcase_05 AC 51 ms
36,472 KB
testcase_06 AC 91 ms
46,768 KB
testcase_07 AC 78 ms
40,216 KB
testcase_08 AC 115 ms
42,916 KB
testcase_09 AC 117 ms
47,028 KB
testcase_10 AC 111 ms
46,232 KB
testcase_11 AC 111 ms
46,028 KB
testcase_12 AC 112 ms
46,216 KB
testcase_13 AC 102 ms
46,596 KB
testcase_14 AC 104 ms
42,604 KB
testcase_15 AC 54 ms
37,024 KB
testcase_16 AC 54 ms
36,832 KB
testcase_17 AC 55 ms
37,248 KB
testcase_18 AC 54 ms
37,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null){
int w=Integer.parseInt(line);
int h=Integer.parseInt(br.readLine());
int cnt=0;
int matchcnt=0;
int[] app=new int[h+1];
HashMap<Integer,Integer> dic=new HashMap<Integer,Integer>();
int n=Integer.parseInt(br.readLine());
for(int i=0;i<n;i++){
line=br.readLine();
String[] values=line.split(" ");
int s=Integer.parseInt(values[0]);
int k=Integer.parseInt(values[1]);
if(!dic.containsKey(s)){
dic.put(s,1);
}
else{
dic.put(s,dic.get(s)+1);
}
if(app[k]==0){
app[k]=1;
cnt++;
}
}
for(int i=1;i<=w;i++){
if(dic.containsKey(i)){
matchcnt+=h-dic.get(i);
}
else{
matchcnt+=cnt;
}
}
System.out.println(matchcnt);
}
}
}
0