結果

問題 No.586 ダブルブッキング
ユーザー YOSHIYOSHI
提出日時 2021-03-20 15:19:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 4,044 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 50,576 KB
最終ジャッジ日時 2024-11-21 01:27:33
合計ジャッジ時間 4,642 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,880 KB
testcase_01 AC 58 ms
50,320 KB
testcase_02 AC 57 ms
49,884 KB
testcase_03 AC 56 ms
50,208 KB
testcase_04 AC 58 ms
49,928 KB
testcase_05 AC 56 ms
50,268 KB
testcase_06 AC 55 ms
50,304 KB
testcase_07 AC 55 ms
50,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class No00000586_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int p1 = Integer.parseInt(br.readLine());
		int p2 = Integer.parseInt(br.readLine());
		int n = Integer.parseInt(br.readLine());
		Set<String> s = new HashSet<String>();
		int cnt = 0;
		for(int i = 0; i < n; i++) {
			String r = br.readLine();
			if(s.contains(r)) {
				cnt++;
			} else {
				s.add(r);
			}
		}
		System.out.println((p1 + p2) * cnt);
	}
}
0