結果
問題 | No.2757 Pin Game |
ユーザー | s |
提出日時 | 2024-05-28 16:58:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 1,223 ms |
コンパイル使用メモリ | 114,204 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-05-28 16:58:46 |
合計ジャッジ時間 | 3,263 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> #include <string> #include<math.h> #include<iomanip> #include<stdio.h> #include <stdlib.h> #include<stdio.h> #include <queue> #include<map> #include <sstream> #include<set> #include<stack> #include<time.h> #include <sys/types.h> #include <tuple> typedef long long int ll; //#include<bits/stdc++.h> using namespace std; int main() { int Q; Q = 1; //cin >> Q; while (Q--) { int n, k; cin >> n >> k; map<int, int>mp; int ans = 0; for (int i = 0; i < n; i++) { int t; cin >> t; if (t - k > 0) { mp[t] = mp[t - k] + 1; } else mp[t]++; ans = max(ans, mp[t]); } cout << ans << endl; } return 0; }