結果

問題 No.216 FAC
ユーザー kaito_tateyamakaito_tateyama
提出日時 2017-08-11 10:16:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-20 22:12:24
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,944 KB
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
      |         ^~~

ソースコード

diff #

#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;
}
0