結果

問題 No.662 スロットマシーン
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-09 04:08:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 899 bytes
コンパイル時間 4,326 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 59,360 KB
最終ジャッジ日時 2024-06-30 12:22:08
合計ジャッジ時間 8,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,048 KB
testcase_01 AC 135 ms
41,356 KB
testcase_02 AC 143 ms
41,120 KB
testcase_03 AC 172 ms
41,876 KB
testcase_04 AC 184 ms
42,424 KB
testcase_05 AC 144 ms
40,952 KB
testcase_06 WA -
testcase_07 AC 189 ms
43,100 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
41,516 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No662{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String[] str = new String[5];
		int[] coin = new int[5];
		for(int i = 0; i < 5; i++){
			str[i] = sc.next();
			coin[i] = sc.nextInt();
		}

		int[] n = new int[3];
		int[][] reels = new int[3][5];
		
		for(int i = 0; i < 3; i++){
			Arrays.fill(reels[i], 0);
			n[i] = sc.nextInt();
			for(int j = 0; j < n[i]; j++){
				int idx = Arrays.asList(str).indexOf(sc.next());
				reels[i][idx]++;
			}
		}
		// System.out.println(Arrays.deepToString(reels));

		int[] num_atari = new int[5];
		int score_sum = 0;
		for(int i = 0; i < 5; i++){
			num_atari[i] = reels[0][i]*reels[1][i]*reels[2][i]*5;
			score_sum += coin[i]*num_atari[i];
		}
		System.out.println((double)score_sum/(double)(n[0]*n[1]*n[2]));
		for(int i = 0; i < 5; i++) System.out.println(num_atari[i]);

	}
}
0