結果
問題 | No.586 ダブルブッキング |
ユーザー | matsuyoshi30 |
提出日時 | 2018-05-30 23:35:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 136 ms / 2,000 ms |
コード長 | 721 bytes |
コンパイル時間 | 2,002 ms |
コンパイル使用メモリ | 74,580 KB |
実行使用メモリ | 41,832 KB |
最終ジャッジ日時 | 2024-06-30 08:27:05 |
合計ジャッジ時間 | 3,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,580 KB |
testcase_01 | AC | 131 ms
41,372 KB |
testcase_02 | AC | 128 ms
41,420 KB |
testcase_03 | AC | 136 ms
41,584 KB |
testcase_04 | AC | 117 ms
41,420 KB |
testcase_05 | AC | 136 ms
41,832 KB |
testcase_06 | AC | 123 ms
41,516 KB |
testcase_07 | AC | 125 ms
41,244 KB |
ソースコード
import java.util.*; class Main { public static void main(String[] args) { // input Scanner in = new Scanner(System.in); int p1 = in.nextInt(); int p2 = in.nextInt(); int n = in.nextInt(); int[] r = new int[n]; for(int i=0; i<n; i++) r[i] = in.nextInt(); // sort Arrays.sort(r); int count = 0; int i = 0; while(i<n) { int temp = r[i]; int j; for(j=i+1; j<n; j++) { if(temp == r[j]) count++; else break; } i = j; } System.out.println((p1+p2) * count); } }