結果
問題 |
No.2757 Pin Game
|
ユーザー |
![]() |
提出日時 | 2024-12-06 11:07:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 152 ms / 2,000 ms |
コード長 | 435 bytes |
コンパイル時間 | 3,175 ms |
コンパイル使用メモリ | 245,084 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-06 11:07:23 |
合計ジャッジ時間 | 4,964 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, K; cin >> N >> K; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } int a = A[0]; auto it = A.begin(); int ans = 1; while (1) { it = lower_bound(A.begin(), A.end(), a + K); if (it == A.end()) { break; } a = *it; ans++; } cout << ans; }