結果

問題 No.662 スロットマシーン
ユーザー htensaihtensai
提出日時 2019-12-10 09:02:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 2,923 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 46,160 KB
最終ジャッジ日時 2024-06-23 21:13:07
合計ジャッジ時間 6,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,620 KB
testcase_01 AC 129 ms
41,568 KB
testcase_02 AC 130 ms
41,748 KB
testcase_03 AC 145 ms
41,536 KB
testcase_04 AC 166 ms
42,432 KB
testcase_05 AC 141 ms
41,928 KB
testcase_06 AC 186 ms
42,792 KB
testcase_07 AC 182 ms
42,988 KB
testcase_08 AC 202 ms
45,740 KB
testcase_09 AC 218 ms
45,936 KB
testcase_10 AC 203 ms
45,700 KB
testcase_11 AC 217 ms
45,792 KB
testcase_12 AC 211 ms
46,160 KB
testcase_13 AC 213 ms
45,832 KB
testcase_14 AC 217 ms
45,668 KB
testcase_15 AC 223 ms
45,796 KB
testcase_16 AC 128 ms
41,280 KB
testcase_17 AC 219 ms
46,100 KB
testcase_18 AC 215 ms
45,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String[] marks = new String[5];
        int[] points = new int[5];
        HashMap<String, Integer> map = new HashMap<>();
        for (int i = 0; i < 5; i++) {
            marks[i] = sc.next();
            map.put(marks[i], i);
            points[i] = sc.nextInt();
        }
        int a = sc.nextInt();
        int[] countsA = new int[5];
        for (int i = 0; i < a; i++) {
            countsA[map.get(sc.next())]++;
        }
        int b = sc.nextInt();
        int[] countsB = new int[5];
        for (int i = 0; i < b; i++) {
            countsB[map.get(sc.next())]++;
        }
        int c = sc.nextInt();
        int[] countsC = new int[5];
        for (int i = 0; i < c; i++) {
            countsC[map.get(sc.next())]++;
        }
        StringBuilder sb = new StringBuilder();
        double ans = 0;
        for (int i = 0; i < 5; i++) {
            ans += countsA[i] / (double)a * countsB[i] / (double) b * countsC[i] / (double)c * points[i] * 5;
            sb.append(5L * countsA[i] * countsB[i] * countsC[i]).append("\n");
        }
        System.out.println(ans);
        System.out.print(sb);
    }
}
0