結果

問題 No.11 カードマッチ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-16 17:44:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 783 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 74,996 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-10-11 19:47:44
合計ジャッジ時間 5,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,916 KB
testcase_01 AC 127 ms
41,516 KB
testcase_02 AC 125 ms
41,320 KB
testcase_03 AC 115 ms
41,020 KB
testcase_04 AC 140 ms
41,556 KB
testcase_05 AC 110 ms
39,816 KB
testcase_06 AC 144 ms
41,556 KB
testcase_07 AC 130 ms
40,636 KB
testcase_08 AC 140 ms
41,260 KB
testcase_09 AC 139 ms
41,556 KB
testcase_10 AC 133 ms
41,384 KB
testcase_11 AC 133 ms
41,844 KB
testcase_12 AC 138 ms
41,844 KB
testcase_13 AC 140 ms
41,596 KB
testcase_14 AC 141 ms
41,704 KB
testcase_15 AC 141 ms
41,640 KB
testcase_16 AC 136 ms
41,676 KB
testcase_17 AC 142 ms
41,792 KB
testcase_18 AC 144 ms
41,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
   public static void main(String[] args) throws Exception {
       Scanner koko = new Scanner(System.in);
       long w = koko.nextLong();
       long h = koko.nextLong();
       int n = koko.nextInt();
       int[] s = new int[n];
       int[] k = new int[n];
       for(int i=0; i<n; i++){
           s[i]=koko.nextInt();
           k[i]=koko.nextInt();
       }
       Arrays.sort(s);
       Arrays.sort(k);
       long counts=1;
       long countk=1;
       for(int i=1; i<n; i++){
           if(s[i]!=s[i-1]){
               counts++;
           }if(k[i]!=k[i-1]){
               countk++;
           }
       }
       long a = countk*w;
       long b = h-countk;
       long ans=(a-n)+(counts*b);
       System.out.println(ans);
   }
}
0