結果

問題 No.662 スロットマシーン
ユーザー iwkjoseciwkjosec
提出日時 2018-03-16 16:21:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 115,388 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-12-21 14:29:44
合計ジャッジ時間 2,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,968 KB
testcase_01 AC 29 ms
19,584 KB
testcase_02 AC 30 ms
19,840 KB
testcase_03 AC 29 ms
20,096 KB
testcase_04 AC 30 ms
20,224 KB
testcase_05 AC 32 ms
19,712 KB
testcase_06 AC 34 ms
20,736 KB
testcase_07 AC 31 ms
20,608 KB
testcase_08 AC 34 ms
23,040 KB
testcase_09 AC 38 ms
23,808 KB
testcase_10 AC 38 ms
23,680 KB
testcase_11 AC 39 ms
23,936 KB
testcase_12 AC 38 ms
23,808 KB
testcase_13 AC 39 ms
23,936 KB
testcase_14 AC 39 ms
23,808 KB
testcase_15 AC 39 ms
23,680 KB
testcase_16 AC 29 ms
20,096 KB
testcase_17 AC 39 ms
23,936 KB
testcase_18 AC 38 ms
23,808 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