結果

問題 No.2757 Pin Game
ユーザー traindoggotraindoggo
提出日時 2024-05-17 21:37:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 2,442 ms
コンパイル使用メモリ 245,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-17 21:37:54
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 35 ms
6,940 KB
testcase_05 AC 35 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef DEBUG_
#include <compe/debug.hpp>
#else
#define dump(...)
#endif

// clang-format off
struct  Fast{Fast(){std::cin.tie(0);ios::sync_with_stdio(false);}} fast;

#define rep(i,n) for (int i=0;i<(int)n;++i)
#define die(msg) do{cout<<(msg)<<'\n',exit(0);}while(0)
#define el '\n'

#define all(k)  k.begin(),  k.end()
#define rall(k) k.rbegin(), k.rend()

#define INFi  1   << 30
#define INFll 1LL << 60
#define MOD17 10'0000'0007
#define MOD98  9'9824'4353

template <typename T> inline bool chmax(T& a, const T& b) {
  return ((a < b) ? (a = b, true) : false);
}
template <typename T> inline bool chmin(T& a, const T& b) {
  return ((a > b) ? (a = b, true) : false);
}

using ll = long long int;
// clang-format on

int main() {
  int n, k;
  cin >> n >> k;

  vector<int> xi(n);
  rep(i, n) cin >> xi[i];

  int cnt{}, left{};

  rep(i, n) {
    if (i == 0) {
      left = xi[i] + k;
      cnt++;
    } else if (left <= xi[i]) {
      left = xi[i] + k;
      cnt++;
    }
  }

  cout << cnt << el;
}
0