結果
| 問題 |
No.216 FAC
|
| コンテスト | |
| ユーザー |
しらゆき
|
| 提出日時 | 2015-11-20 08:45:33 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 755 bytes |
| コンパイル時間 | 851 ms |
| コンパイル使用メモリ | 113,292 KB |
| 実行使用メモリ | 27,300 KB |
| 最終ジャッジ日時 | 2024-09-13 17:05:07 |
| 合計ジャッジ時間 | 2,559 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 WA * 8 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
class Program
{
static void Main()
{
int n = int.Parse(Console.ReadLine());
int[] a = Console.ReadLine().Split().Select(int.Parse).ToArray();
int[] b = Console.ReadLine().Split().Select(int.Parse).ToArray();
int score = 0;
int sum = 0;
for (int i = 0; i < n; i++)
{
if (b[i] == 0) score += a[i];
}
for (int i = 1; i <= 100; i++)
{
for (int j = 0; j < n; j++)
{
if (b[j] == i) sum += a[j];
}
if (sum > score)
{
Console.WriteLine("NO");
return;
}
}
Console.WriteLine("YES");
}
}
しらゆき