結果
問題 | No.586 ダブルブッキング |
ユーザー | sudo_yum |
提出日時 | 2018-05-25 14:37:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 630 bytes |
コンパイル時間 | 1,801 ms |
コンパイル使用メモリ | 74,936 KB |
実行使用メモリ | 41,680 KB |
最終ジャッジ日時 | 2024-06-28 17:59:18 |
合計ジャッジ時間 | 3,403 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
41,432 KB |
testcase_01 | AC | 114 ms
41,456 KB |
testcase_02 | AC | 113 ms
41,072 KB |
testcase_03 | AC | 122 ms
41,620 KB |
testcase_04 | AC | 98 ms
39,600 KB |
testcase_05 | AC | 121 ms
41,680 KB |
testcase_06 | AC | 97 ms
41,144 KB |
testcase_07 | AC | 101 ms
41,220 KB |
ソースコード
import java.util.*; public class Main{ static StringBuilder sb = new StringBuilder(""); public static void main(String[] args) { Scanner sc = new Scanner(System.in); int P1 = sc.nextInt(); int P2 = sc.nextInt(); int nin = sc.nextInt(); int[] heya = new int[nin]; for (int i=0;i<nin ;i++ ) { heya[i] = sc.nextInt(); } sc.close(); Arrays.sort(heya); int temp = heya[0]; int cnt = 0; for (int i=1;i<nin ;i++ ) { if (temp==heya[i]) { cnt++; }else{ temp=heya[i]; } } int result = (P1+P2)*cnt; System.out.println(result); } }