結果
問題 |
No.216 FAC
|
ユーザー |
![]() |
提出日時 | 2017-08-11 10:21:21 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 543 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 74,664 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 20:29:40 |
合計ジャッジ時間 | 1,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 17 WA * 7 |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:27:3: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized] 27 | if (ans == k) { | ^~ main.cpp:11:9: note: 'ans' was declared here 11 | int n,ans,k = 0; cin >> n; | ^~~
ソースコード
#include <iostream> #include <fstream> #include <vector> #include <string> #include <algorithm> using namespace std; int main(){ int n,ans,k = 0; cin >> n; vector<int> v(n),x(101); for (int i = 0; i < n; i++) { cin >> v[i]; } for (int i = 0; i < n; i++) { int a; cin >> a; if (a == 0) { k += v[i]; }else{ x[a] += v[i]; } int an = max(x[a], k); ans = max(ans, an); //cout << k << " "; } if (ans == k) { cout << "YES" << "\n"; }else{ cout << "NO" << "\n"; } return 0; }