結果

問題 No.2401 Dirty Shoes and Stairs
ユーザー ineedyourlovepineedyourlovep
提出日時 2023-08-24 16:06:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 205,120 KB
実行使用メモリ 11,936 KB
最終ジャッジ日時 2023-08-24 16:06:52
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 40 ms
7,760 KB
testcase_04 AC 44 ms
8,540 KB
testcase_05 AC 15 ms
4,996 KB
testcase_06 AC 37 ms
7,512 KB
testcase_07 AC 66 ms
10,460 KB
testcase_08 AC 27 ms
6,720 KB
testcase_09 AC 5 ms
4,380 KB
testcase_10 AC 21 ms
5,568 KB
testcase_11 AC 98 ms
11,424 KB
testcase_12 AC 87 ms
11,936 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,384 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < (n); i++)
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const int INF = 1001001001;
const ll LINF = 1001002003004005006ll;
//const int mod = 1000000007;
//const int mod = 998244353;

int main()
{
  int n;
  cin >> n;
  int m1;
  cin >> m1;
  vector<int> a(m1);
  rep(i, 0, m1) cin >> a[i];
  int m2;
  cin >> m2;
  vector<int> b(m2);
  rep(i, 0, m2) cin >> b[i];
  set<int> st;
  int now = 0;
  rep(i, 0, m1) {
    now += a[i];
    st.insert(now);
  }
  rep(i, 0, m2) {
    now -= b[i];
    st.insert(now);
  }
  cout << n - st.size() + 1 << endl;
  return 0;
}
0