結果
| 問題 |
No.216 FAC
|
| コンテスト | |
| ユーザー |
kaito_tateyama
|
| 提出日時 | 2017-08-11 10:16:59 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 491 bytes |
| コンパイル時間 | 764 ms |
| コンパイル使用メモリ | 74,568 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-12 20:29:38 |
| 合計ジャッジ時間 | 1,829 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 4 |
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:25:3: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
25 | 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];
}
ans = max(x[a],k);
}
if (ans == k) {
cout << "YES" << "\n";
}else{
cout << "NO" << "\n";
}
return 0;
}
kaito_tateyama