結果
問題 | No.586 ダブルブッキング |
ユーザー | jimano |
提出日時 | 2018-01-25 10:43:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 2,716 ms |
コンパイル使用メモリ | 73,616 KB |
実行使用メモリ | 37,088 KB |
最終ジャッジ日時 | 2024-06-08 01:40:12 |
合計ジャッジ時間 | 3,861 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
36,960 KB |
testcase_01 | AC | 47 ms
36,956 KB |
testcase_02 | AC | 44 ms
36,800 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 45 ms
37,088 KB |
testcase_06 | AC | 44 ms
36,632 KB |
testcase_07 | WA | - |
ソースコード
package me.yukicoder.lv1; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0586 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { int yukiPrice = Integer.parseInt(br.readLine()); int furikaePrice = Integer.parseInt(br.readLine()); int cntReserve = Integer.parseInt(br.readLine()); int cntDupulicate = 0; int[] reserve = new int[cntReserve]; for (int i = 0; i < reserve.length; i++) { reserve[i] = Integer.parseInt(br.readLine()); } for (int i = 0; i < reserve.length - 1; i++) { cntDupulicate = (reserve[i] == reserve[i + 1]) ? cntDupulicate + 1 : cntDupulicate; } System.out.println((yukiPrice + furikaePrice) * cntDupulicate); } catch (IOException e) { e.printStackTrace(); } } }