結果

問題 No.216 FAC
ユーザー mencottonmencotton
提出日時 2017-12-30 16:49:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 112,908 KB
実行使用メモリ 27,400 KB
最終ジャッジ日時 2024-06-01 08:41:07
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,276 KB
testcase_01 AC 31 ms
27,140 KB
testcase_02 AC 31 ms
27,388 KB
testcase_03 AC 31 ms
25,380 KB
testcase_04 AC 30 ms
25,140 KB
testcase_05 AC 31 ms
25,352 KB
testcase_06 AC 31 ms
27,296 KB
testcase_07 AC 31 ms
24,996 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 30 ms
27,164 KB
testcase_12 WA -
testcase_13 AC 29 ms
23,348 KB
testcase_14 WA -
testcase_15 AC 29 ms
27,268 KB
testcase_16 AC 30 ms
27,396 KB
testcase_17 AC 29 ms
27,164 KB
testcase_18 WA -
testcase_19 AC 30 ms
25,252 KB
testcase_20 WA -
testcase_21 AC 30 ms
25,384 KB
testcase_22 AC 30 ms
25,252 KB
testcase_23 AC 31 ms
25,260 KB
testcase_24 WA -
testcase_25 AC 32 ms
25,484 KB
testcase_26 AC 29 ms
27,272 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 Test
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int[] y = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int canget = 0;
            for (int i = 0; i < n; i++)
            {
                if (y[i] == 0) canget += x[i];
            }
            Console.WriteLine(canget >= x.Sum() - canget ? "YES" : "NO");
        }
    }
}
0