結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー NoNo
提出日時 2018-01-27 19:00:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 2,115 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 116,956 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-06-09 05:33:43
合計ジャッジ時間 6,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
19,584 KB
testcase_01 AC 36 ms
19,712 KB
testcase_02 AC 36 ms
19,712 KB
testcase_03 AC 64 ms
21,888 KB
testcase_04 AC 64 ms
21,376 KB
testcase_05 AC 189 ms
22,144 KB
testcase_06 AC 179 ms
23,936 KB
testcase_07 AC 173 ms
23,936 KB
testcase_08 AC 126 ms
23,808 KB
testcase_09 AC 226 ms
23,904 KB
testcase_10 AC 53 ms
21,376 KB
testcase_11 AC 83 ms
22,528 KB
testcase_12 AC 86 ms
22,272 KB
testcase_13 AC 186 ms
23,976 KB
testcase_14 AC 259 ms
23,872 KB
testcase_15 AC 90 ms
22,784 KB
testcase_16 AC 50 ms
21,888 KB
testcase_17 AC 76 ms
22,272 KB
testcase_18 AC 45 ms
20,480 KB
testcase_19 AC 212 ms
23,936 KB
testcase_20 AC 264 ms
23,808 KB
testcase_21 AC 84 ms
22,144 KB
testcase_22 AC 91 ms
21,632 KB
testcase_23 AC 118 ms
23,808 KB
testcase_24 AC 249 ms
23,844 KB
testcase_25 AC 278 ms
24,064 KB
testcase_26 AC 169 ms
23,680 KB
testcase_27 AC 155 ms
23,552 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;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] l = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
            int[] la = new int[n];
            int t = int.Parse(Console.ReadLine());
            var li = new List<Person>();

            int nt = 0;
            for (int i = 0; i < t; i++)
            {
                string[] ss = Console.ReadLine().Split();
                int e = Convert.ToChar(ss[1]) - 'A';
                la[e]++;
                int point = (int)(50 * l[e] + (50 * l[e] / (0.8 + 0.2 * la[e])));


                if (li.Count(x => x.name == ss[0]) == 0)
                {
                    int[] k = new int[n];
                    k[e] = point;
                    var p = new Person(ss[0], k, nt);
                    li.Add(p);
                }
                else
                {
                    var u = li.Where(x => x.name == ss[0]);
                    foreach (var item in u)
                    {
                        item.point[e] = point;
                        item.lastTime = nt;
                    }
                }
                nt++;
            }

            var ans = li.OrderByDescending(x => x.point.Sum()).ThenBy(x => x.lastTime);
            int h = 1;
            foreach (var item in ans)
            {
                string s = "";
                for (int i = 0; i < n; i++)
                {
                    s += item.point[i];
                    if (i != n - 1) s += " ";
                }

                s = h.ToString() + " " + item.name + " " + s + " " + item.point.Sum();
                Console.WriteLine(s);
                h++;
            }
        }
    }

    public class Person
    {
        public Person(string n, int[] p, int t)
        {
            name = n;
            point = p;
            lastTime = t;
        }

        public string name = "";
        public int[] point;
        public int lastTime = 0;
    }
}
0