結果

問題 No.216 FAC
ユーザー NoNo
提出日時 2015-06-07 01:47:03
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,295 bytes
コンパイル時間 1,004 ms
コンパイル使用メモリ 112,340 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-07-06 14:33:32
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 RE * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 System.Text;
using System.Threading.Tasks;

namespace yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());

            int[] a = Array.ConvertAll<string,int>(Console.ReadLine().Split(), delegate(string value)
            {
                return int.Parse(value);
            });

            int[] b = Array.ConvertAll<string, int>(Console.ReadLine().Split(), delegate(string value)
            {
                return int.Parse(value);
            });

            int[] p = new int[100];
            for (int i = 0; i < p.Length ; i++)
            {
                p[i] = 0;
            }

            int q = 0;
            //-------------------------------------

            for (int i = 0; i < b.Length; i++)
            {
                if (b[i] == 0)
                {
                    q += a[i];
                }
                else
                {
                    p[b[i]] += a[i];
                }
            }

            if (q >= p.Max())
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0