結果

問題 No.216 FAC
ユーザー btkbtk
提出日時 2015-05-26 22:23:39
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 643 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 83,088 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 00:07:43
合計ジャッジ時間 1,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<fstream>
#include<sstream>
#include<string>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<vector>
#include<list>
#include<algorithm>
#include<utility>
#include<complex>

using namespace std;
int pt[1000];
int man[1000];
int main(){
	int n,m;
	cin >> n;
	for (int i = 0; i < n; i++){
		cin >> pt[i];
	}
	for (int i = 0; i < n; i++){
		cin >> m;
		man[m] += pt[i];
	}
	int res = -1;
	for (int i = 0; i < 200; i++){
		res = max(man[i],res);
	}
	if (res == man[0])cout << "YES" << endl;
	else cout << "NO" << endl;
	return 0;
}
0