結果

問題 No.586 ダブルブッキング
ユーザー kazapyon27kazapyon27
提出日時 2018-01-08 21:27:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 3,908 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 37,288 KB
最終ジャッジ日時 2024-06-06 01:47:40
合計ジャッジ時間 4,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,212 KB
testcase_01 AC 51 ms
37,220 KB
testcase_02 AC 53 ms
36,752 KB
testcase_03 AC 53 ms
36,884 KB
testcase_04 AC 53 ms
37,288 KB
testcase_05 AC 54 ms
37,100 KB
testcase_06 AC 52 ms
36,640 KB
testcase_07 AC 52 ms
37,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.586 ダブルブッキング*/
import java.io.*;
import java.util.*; 
public class No586 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			int YukiPrice=Integer.parseInt(input.readLine());
			int OtherPrice=Integer.parseInt(input.readLine());
			byte Reservation=Byte.parseByte(input.readLine());
			short[] RoomNum=new short[Reservation];
			short ChkRoom;
			byte booking=0;
			for(byte i=0;i<RoomNum.length;i++){
				RoomNum[i]=Short.parseShort(input.readLine());
			}
			Arrays.sort(RoomNum);
		for(byte j=0;j<RoomNum.length-1;j++){
				ChkRoom=RoomNum[j];
				while(j<RoomNum.length-1&& ChkRoom==RoomNum[j+1]){
					booking++;
					j++;
				}
			}
			System.out.println(YukiPrice*booking+OtherPrice*booking);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0