結果
問題 | No.11 カードマッチ |
ユーザー | k_kadora |
提出日時 | 2015-06-15 15:49:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 157 ms / 5,000 ms |
コード長 | 608 bytes |
コンパイル時間 | 3,271 ms |
コンパイル使用メモリ | 74,788 KB |
実行使用メモリ | 49,228 KB |
最終ジャッジ日時 | 2024-10-11 19:49:51 |
合計ジャッジ時間 | 6,852 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
41,180 KB |
testcase_01 | AC | 114 ms
39,864 KB |
testcase_02 | AC | 133 ms
41,080 KB |
testcase_03 | AC | 130 ms
40,792 KB |
testcase_04 | AC | 151 ms
47,888 KB |
testcase_05 | AC | 129 ms
41,184 KB |
testcase_06 | AC | 155 ms
49,032 KB |
testcase_07 | AC | 152 ms
44,264 KB |
testcase_08 | AC | 153 ms
45,636 KB |
testcase_09 | AC | 155 ms
49,228 KB |
testcase_10 | AC | 152 ms
48,088 KB |
testcase_11 | AC | 157 ms
47,064 KB |
testcase_12 | AC | 154 ms
47,480 KB |
testcase_13 | AC | 154 ms
46,452 KB |
testcase_14 | AC | 154 ms
46,424 KB |
testcase_15 | AC | 148 ms
41,520 KB |
testcase_16 | AC | 143 ms
41,572 KB |
testcase_17 | AC | 149 ms
41,776 KB |
testcase_18 | AC | 150 ms
41,724 KB |
ソースコード
import java.util.Scanner; public class Yuki11{ public static void main(String[] arg){ Scanner sc = new Scanner(System.in); long tempw=0,temph=0,res; int w,h,n,temps,tempk; w = sc.nextInt(); h = sc.nextInt(); n = sc.nextInt(); int[] cs = new int[w]; int[] ck = new int[h]; for(int i = 0;i<n;i++){ temps = sc.nextInt()-1; tempk = sc.nextInt()-1; if(cs[temps] == 0){ cs[temps] = 1; tempw++; } if(ck[tempk] == 0){ ck[tempk] = 1; temph++; } } res = (long)h*(long)tempw+(long)w*(long)temph-(long)tempw*(long)temph-(long)n; System.out.println(res); } }