結果
問題 | No.216 FAC |
ユーザー | kotatsugame |
提出日時 | 2016-12-21 20:34:46 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 305 bytes |
コンパイル時間 | 534 ms |
コンパイル使用メモリ | 67,540 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 13:59:43 |
合計ジャッジ時間 | 1,321 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 4 | main(){ | ^~~~
ソースコード
#include<iostream> #include<algorithm> using namespace std; main(){ int p[101]={},n,a[100],b[100];cin>>n; for(int i=0;i<n;i++)cin>>a[i]; for(int i=0;i<n;i++)cin>>b[i]; for(int i=0;i<n;i++)p[b[i]]+=a[i]; bool flag=false; for(int i=1;i<101;i++)if(p[0]<p[i])flag=true; cout<<(flag?"NO":"YES")<<endl; }