結果

問題 No.216 FAC
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-12 02:07:27
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 1,076 ms
コンパイル使用メモリ 109,924 KB
実行使用メモリ 27,752 KB
最終ジャッジ日時 2024-09-22 12:08:02
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
27,396 KB
testcase_02 AC 30 ms
25,392 KB
testcase_03 AC 31 ms
27,620 KB
testcase_04 AC 32 ms
27,392 KB
testcase_05 AC 30 ms
23,476 KB
testcase_06 AC 31 ms
25,520 KB
testcase_07 AC 32 ms
27,492 KB
testcase_08 AC 32 ms
25,736 KB
testcase_09 AC 32 ms
25,224 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 31 ms
27,388 KB
testcase_13 WA -
testcase_14 AC 31 ms
25,344 KB
testcase_15 WA -
testcase_16 AC 32 ms
25,480 KB
testcase_17 AC 32 ms
25,452 KB
testcase_18 AC 32 ms
25,392 KB
testcase_19 AC 32 ms
25,452 KB
testcase_20 WA -
testcase_21 AC 32 ms
27,524 KB
testcase_22 AC 32 ms
27,656 KB
testcase_23 AC 30 ms
23,352 KB
testcase_24 AC 32 ms
27,520 KB
testcase_25 AC 32 ms
25,328 KB
testcase_26 AC 31 ms
25,328 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;
using System.Collections.Generic;

class No216{
    static void Main(){
        var c=Int32.Parse(Console.ReadLine());
        var a=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).ToArray();
        var b=Console.ReadLine().Split(' ').Select(x=>Int32.Parse(x)).ToArray();
        var dic=new Dictionary<int,int>();
        for(int i=0;i<c;++i){
            if(dic.ContainsKey(b[i])){
             int j=-1;
             dic.TryGetValue(b[i],out j);
             j+=a[i];
             dic[b[i]]=j;
            }
            else{
            dic.Add(b[i],a[0]);
            }
        }
        int k=0;
        dic.TryGetValue(0,out k);
        var s="YES";
        foreach(var value in dic.Values){
            if(value>k)s="NO";
        }
        Console.WriteLine(s);
    }
}
0