結果
問題 | No.216 FAC |
ユーザー |
|
提出日時 | 2017-10-09 01:09:27 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 1,317 ms |
コンパイル使用メモリ | 159,680 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 05:51:39 |
合計ジャッジ時間 | 2,242 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(void) {int n;cin >> n;vector<int> a(n), score(100, 0);for (int i = 0; i < n; i++) {cin >> a[i];}for (int i = 0; i < n; i++) {int b;cin >> b;score[b] += a[i];}int maxs = 0;for (int i = 1; i <= 100; i++) {maxs = max(maxs, score[i]);}cout << (score[0] >= maxs ? "YES" : "NO") << endl;return 0;}