結果
問題 | No.216 FAC |
ユーザー | xuelei |
提出日時 | 2018-07-18 20:07:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 304 bytes |
コンパイル時間 | 580 ms |
コンパイル使用メモリ | 67,092 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-16 03:22:44 |
合計ジャッジ時間 | 1,459 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int n; cin >> n; int a[n],b[n],all[101] = {}; for(int i = 0;i < n;i++) cin >> a[i]; for(int i = 0;i < n;i++){ cin >> b[i]; all[b[i]] += a[i]; } cout << (all[0] == *max_element(all,all + 101) ? "YES" : "NO") << endl; }