結果

問題 No.216 FAC
ユーザー CroweaCrowea
提出日時 2019-01-25 01:46:14
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 758 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 108,288 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-09-16 04:44:38
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,200 KB
testcase_01 AC 32 ms
19,200 KB
testcase_02 AC 33 ms
19,072 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 33 ms
19,456 KB
testcase_08 AC 32 ms
19,456 KB
testcase_09 AC 32 ms
19,072 KB
testcase_10 AC 32 ms
19,456 KB
testcase_11 AC 34 ms
19,072 KB
testcase_12 AC 33 ms
19,200 KB
testcase_13 AC 37 ms
19,200 KB
testcase_14 AC 36 ms
19,456 KB
testcase_15 AC 35 ms
19,200 KB
testcase_16 AC 35 ms
19,200 KB
testcase_17 AC 34 ms
19,328 KB
testcase_18 AC 33 ms
19,328 KB
testcase_19 AC 34 ms
19,200 KB
testcase_20 AC 33 ms
19,328 KB
testcase_21 RE -
testcase_22 AC 33 ms
19,456 KB
testcase_23 AC 32 ms
19,456 KB
testcase_24 AC 35 ms
19,200 KB
testcase_25 AC 34 ms
19,584 KB
testcase_26 AC 33 ms
19,200 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.Linq;

class Program
{
    static void Main(string[] args)
    {
        // 入力
        var N = int.Parse(Console.ReadLine());
        var points = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToList();
        var solvers = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToList();
        
        var results = solvers.Zip(points, (number, score) => new { N = number, S = score }).ToList();
        var r2 = results.GroupBy(x => new { x.N }).Select(x => new { N = x.Key.N, S = x.Sum(d => d.S) }).ToList();
        var myScore = r2.Where(x => x.N == 0).Max(x => x.S);
        var max = r2.Max(x => x.S);

        if (myScore >= max) Console.WriteLine("YES");
        else Console.WriteLine("NO");

    }
}

0