結果
問題 | No.586 ダブルブッキング |
ユーザー | aikon_marimo |
提出日時 | 2018-02-01 20:34:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 127 ms / 2,000 ms |
コード長 | 482 bytes |
コンパイル時間 | 2,869 ms |
コンパイル使用メモリ | 75,092 KB |
実行使用メモリ | 54,364 KB |
最終ジャッジ日時 | 2024-06-09 21:24:10 |
合計ジャッジ時間 | 4,290 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
52,844 KB |
testcase_01 | AC | 101 ms
52,960 KB |
testcase_02 | AC | 118 ms
54,088 KB |
testcase_03 | AC | 127 ms
54,208 KB |
testcase_04 | AC | 103 ms
52,728 KB |
testcase_05 | AC | 120 ms
54,120 KB |
testcase_06 | AC | 102 ms
52,996 KB |
testcase_07 | AC | 116 ms
54,364 KB |
ソースコード
package yukicoder.No586; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int flg[] = new int[1000]; Arrays.fill(flg, 0); int P1 = in.nextInt(); int P2 = in.nextInt(); int N = in.nextInt(); int cost = 0; for (int i = 0; i < N; i++) { int R = in.nextInt(); if (flg[R] != 0) { cost += P1+P2; } flg[R] = 1; } System.out.println(cost); } }