結果

問題 No.586 ダブルブッキング
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 22:55:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 3,353 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-09 10:47:11
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,220 KB
testcase_01 AC 134 ms
53,924 KB
testcase_02 AC 138 ms
53,768 KB
testcase_03 AC 146 ms
54,008 KB
testcase_04 AC 133 ms
53,740 KB
testcase_05 AC 138 ms
54,264 KB
testcase_06 AC 126 ms
53,896 KB
testcase_07 AC 126 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.ArrayList;
import java.util.Scanner;
public class Doublebooking {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int P1 = s.nextInt();
		int P2 = s.nextInt();
		int N = s.nextInt();
		int c = 0;
		ArrayList<Integer> roomnumber = new ArrayList<>();
		for(int i = 0;i < N;i++){
			int r = s.nextInt();
			if(roomnumber.contains(r)){
				c++;
			}else{
				roomnumber.add(r);
			}
		}
		s.close();
		System.out.println(c*(P1+P2));

	}

}
0