結果
問題 | No.216 FAC |
ユーザー |
![]() |
提出日時 | 2015-06-07 01:53:11 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 1,299 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 105,856 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-10-15 00:38:22 |
合計ジャッジ時間 | 3,274 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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] - 1] += a[i]; } } if (q >= p.Max()) { Console.WriteLine("YES"); } else { Console.WriteLine("NO"); } } } }