結果

問題 No.586 ダブルブッキング
ユーザー Mcpu3Mcpu3
提出日時 2018-07-02 23:43:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-07-01 01:42:03
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,096 KB
testcase_01 AC 131 ms
53,972 KB
testcase_02 AC 133 ms
54,148 KB
testcase_03 AC 140 ms
54,104 KB
testcase_04 AC 135 ms
53,860 KB
testcase_05 AC 143 ms
54,188 KB
testcase_06 AC 133 ms
54,124 KB
testcase_07 AC 136 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no586{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int p1=stdIn.nextInt(),p2=stdIn.nextInt(),n=stdIn.nextInt(),r,a[]=new int[999],i,s=0;
		for(i=0;i<n;i++) {
			r=stdIn.nextInt();
			a[r-1]++;
		}
		for(i=0;i<999;i++)if(a[i]>0)s+=a[i]-1;
		System.out.print((p1+p2)*s);
	}
}
0