結果

問題 No.662 スロットマシーン
ユーザー iwkjoseciwkjosec
提出日時 2018-03-16 16:21:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 933 ms
コンパイル使用メモリ 113,628 KB
実行使用メモリ 32,156 KB
最終ジャッジ日時 2024-06-01 09:26:45
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
26,004 KB
testcase_01 AC 33 ms
25,916 KB
testcase_02 AC 33 ms
26,156 KB
testcase_03 AC 33 ms
28,044 KB
testcase_04 AC 34 ms
26,000 KB
testcase_05 AC 34 ms
26,164 KB
testcase_06 AC 35 ms
26,032 KB
testcase_07 AC 37 ms
26,032 KB
testcase_08 AC 39 ms
28,036 KB
testcase_09 AC 42 ms
30,096 KB
testcase_10 AC 42 ms
29,976 KB
testcase_11 AC 42 ms
30,108 KB
testcase_12 AC 42 ms
32,156 KB
testcase_13 AC 42 ms
30,220 KB
testcase_14 AC 41 ms
30,228 KB
testcase_15 AC 42 ms
30,496 KB
testcase_16 AC 33 ms
28,084 KB
testcase_17 AC 43 ms
32,036 KB
testcase_18 AC 43 ms
29,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var s = new string[5];
        var v = new int[5];
        for (int i = 0; i < 5; i++)
        {
            var inp = ReadLine().Split();
            s[i] = inp[0];
            v[i] = int.Parse(inp[1]);
        }

        var n = new long[3];
        var reel = new long[3, 5];
        for (int i = 0; i < 3; i++)
        {
            n[i] = int.Parse(ReadLine());
            for (int j = 0; j < n[i]; j++)
            {
                var g = ReadLine();
                reel[i, s.Select((x, y) => x == g ? y : -1).Where(x => x > -1).First()]++;
            }
        }
        var u = new long[5];
        for (int i = 0; i < 5; i++)
        {
            u[i] = reel[0, i] * reel[1, i] * reel[2, i] * 5;
        }
        var rs = 0L;
        for (int i = 0; i < 5; i++)
        {
            rs += u[i] * v[i];
        }

        WriteLine((double)rs / (n[0] * n[1] * n[2]));
        for (int i = 0; i < 5; i++)
        {
            WriteLine(u[i]);
        }
    }
}
0