結果
問題 | No.586 ダブルブッキング |
ユーザー | takeya_okino |
提出日時 | 2017-11-25 12:24:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 603 bytes |
コンパイル時間 | 1,880 ms |
コンパイル使用メモリ | 74,900 KB |
実行使用メモリ | 41,924 KB |
最終ジャッジ日時 | 2024-05-05 12:33:28 |
合計ジャッジ時間 | 3,562 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
40,056 KB |
testcase_01 | AC | 114 ms
41,676 KB |
testcase_02 | AC | 114 ms
41,300 KB |
testcase_03 | AC | 124 ms
41,116 KB |
testcase_04 | AC | 124 ms
41,468 KB |
testcase_05 | AC | 133 ms
41,924 KB |
testcase_06 | AC | 118 ms
41,352 KB |
testcase_07 | AC | 117 ms
41,332 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int p1 = sc.nextInt(); int p2 = sc.nextInt(); int n = sc.nextInt(); HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(); for(int i = 0; i < n; i++) { int r = sc.nextInt(); if(map.containsKey(r)) { map.put(r, map.get(r) + 1); } else { map.put(r, 1); } } int ans = 0; for(int r : map.keySet()) { ans += (map.get(r) - 1); } ans = (ans * (p1 + p2)); System.out.println(ans); } }