結果
| 問題 | 
                            No.216 FAC
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2015-05-26 22:56:38 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 285 bytes | 
| コンパイル時間 | 494 ms | 
| コンパイル使用メモリ | 57,180 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-06 10:09:43 | 
| 合計ジャッジ時間 | 1,442 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 15 WA * 9 | 
ソースコード
#include <iostream>
#include <algorithm>
#define REP(i,n) for(int i=0;i<n;i++)
using namespace std;
int main(){
	int n, a[100], b, s[101]={0}, j;
	cin >> n;
	REP(i,n)	cin >> a[i];
	REP(i,n){
		cin >> b;
		s[b]+=a[i];
	}
	reverse(a+1, a+n);
	cout << ((s[0]>=s[1])?"YES":"NO") << endl;
}