結果

問題 No.216 FAC
ユーザー phsplsphspls
提出日時 2020-03-28 00:47:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 723 bytes
コンパイル時間 1,154 ms
コンパイル使用メモリ 115,620 KB
実行使用メモリ 29,496 KB
最終ジャッジ日時 2024-06-10 16:54:12
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,444 KB
testcase_01 AC 33 ms
25,408 KB
testcase_02 AC 33 ms
25,408 KB
testcase_03 AC 34 ms
25,444 KB
testcase_04 AC 35 ms
25,444 KB
testcase_05 AC 34 ms
25,320 KB
testcase_06 AC 33 ms
25,572 KB
testcase_07 AC 34 ms
27,484 KB
testcase_08 AC 33 ms
27,476 KB
testcase_09 AC 34 ms
27,572 KB
testcase_10 AC 35 ms
27,196 KB
testcase_11 AC 33 ms
25,184 KB
testcase_12 AC 34 ms
27,832 KB
testcase_13 AC 35 ms
25,184 KB
testcase_14 AC 33 ms
25,312 KB
testcase_15 AC 33 ms
25,396 KB
testcase_16 AC 34 ms
27,720 KB
testcase_17 AC 33 ms
27,328 KB
testcase_18 AC 33 ms
25,260 KB
testcase_19 AC 34 ms
27,460 KB
testcase_20 AC 34 ms
27,232 KB
testcase_21 AC 34 ms
29,496 KB
testcase_22 AC 34 ms
25,444 KB
testcase_23 AC 34 ms
27,328 KB
testcase_24 AC 35 ms
25,524 KB
testcase_25 AC 36 ms
27,612 KB
testcase_26 AC 33 ms
23,220 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;

public class P0216 {
    public static void Main() {
        var n = int.Parse(Console.ReadLine().Trim());
        var a = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();
        var b = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();
        var dict = new Dictionary<int, int>();
        foreach(var pair in a.Zip(b, (i, j) => new { left = i, right = j })) {
            dict[pair.right] = dict.GetValueOrDefault(pair.right) + pair.left; 
        }
        if(dict.GetValueOrDefault(0) >= dict.Values.Max()) {
            Console.WriteLine("YES");
        } else {
            Console.WriteLine("NO");
        }
    }
}
0