結果

問題 No.662 スロットマシーン
ユーザー fal_rndfal_rnd
提出日時 2018-05-12 13:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 57,704 KB
最終ジャッジ日時 2024-06-28 09:33:08
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,928 KB
testcase_01 AC 135 ms
54,128 KB
testcase_02 AC 140 ms
53,952 KB
testcase_03 AC 173 ms
54,072 KB
testcase_04 AC 180 ms
54,352 KB
testcase_05 AC 156 ms
54,068 KB
testcase_06 AC 186 ms
54,344 KB
testcase_07 AC 186 ms
54,400 KB
testcase_08 AC 196 ms
57,184 KB
testcase_09 AC 220 ms
57,536 KB
testcase_10 AC 218 ms
57,660 KB
testcase_11 AC 223 ms
57,564 KB
testcase_12 AC 224 ms
57,504 KB
testcase_13 AC 225 ms
57,540 KB
testcase_14 AC 225 ms
57,704 KB
testcase_15 AC 219 ms
57,460 KB
testcase_16 AC 137 ms
54,176 KB
testcase_17 AC 220 ms
57,092 KB
testcase_18 AC 221 ms
57,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	static Scanner s=new Scanner(System.in);
	static int gInt(){
		return Integer.parseInt(s.next());
	}
	public static void main(String[] A){
		Map<String,Integer>map=new HashMap<>();
		int[]reward=new int[5];
		for(int i=0;i<5;++i) {
			map.put(s.next(),i);
			reward[i]=gInt();
		}
		long[]len=new long[3];
		long[][]count=new long[3][5];
		for(int i=0;i<3;++i)
			for(long j=len[i]=gInt();j>0;--j)
				count[i][map.get(s.next())]++;
		
		long prob=0;
		for(int i=0;i<5;++i)
			prob+=count[0][i]*count[1][i]*count[2][i]*reward[i];
		System.out.println(prob*5.0/(len[0]*len[1]*len[2]));
		for(int i=0;i<5;++i)
			System.out.println(count[0][i]*count[1][i]*count[2][i]*5);;
	}
}
0