結果

問題 No.586 ダブルブッキング
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 02:28:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 73,812 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-10-01 21:22:47
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,436 KB
testcase_01 AC 103 ms
40,400 KB
testcase_02 AC 116 ms
41,140 KB
testcase_03 AC 124 ms
41,540 KB
testcase_04 AC 115 ms
41,024 KB
testcase_05 AC 128 ms
41,592 KB
testcase_06 AC 99 ms
39,408 KB
testcase_07 AC 113 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		int[] ints = new int[1000];
		int n = sc.nextInt();
		int sum = a + b;
		int ans = 0;
		for (int i=0; i<n; i++) {
			int temp = sc.nextInt();
			if (ints[temp]==1) {ans += sum;}
			else {ints[temp]++;}
		}
		System.out.println(ans);
	}
}
0