結果
問題 | No.586 ダブルブッキング |
ユーザー | kohaku_kohaku |
提出日時 | 2018-04-14 16:08:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 600 bytes |
コンパイル時間 | 2,268 ms |
コンパイル使用メモリ | 75,744 KB |
実行使用メモリ | 54,320 KB |
最終ジャッジ日時 | 2024-06-26 22:17:17 |
合計ジャッジ時間 | 4,012 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,016 KB |
testcase_01 | AC | 136 ms
54,092 KB |
testcase_02 | AC | 130 ms
53,956 KB |
testcase_03 | AC | 137 ms
53,936 KB |
testcase_04 | AC | 131 ms
54,228 KB |
testcase_05 | AC | 142 ms
54,320 KB |
testcase_06 | AC | 131 ms
54,200 KB |
testcase_07 | AC | 131 ms
54,012 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); StringBuilder sb = new StringBuilder(); int p1 = sc.nextInt(); int p2 = sc.nextInt(); int n = sc.nextInt(); int count = 0; List<Integer> list = new ArrayList<>(); for(int i = 0 ; i < n; i++) { int r = sc.nextInt(); if(list.contains(r)) { count++; } else { list.add(r); } } System.out.println( count*(p1+p2) ); } }