結果
問題 | No.1651 Removing Cards |
ユーザー | nawawan |
提出日時 | 2021-08-20 22:47:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 2,015 ms |
コンパイル使用メモリ | 203,252 KB |
実行使用メモリ | 7,504 KB |
最終ジャッジ日時 | 2024-10-14 04:56:02 |
合計ジャッジ時間 | 10,140 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 22 ms
5,248 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 | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 257 ms
7,500 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 268 ms
7,504 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int K, Q; cin >> K >> Q; vector<long long> ans; ans.push_back(K); while(ans.back() <= 1000000000000000000){ long long temp = ans.back(); long long ub = 100000000000000; long long lb = -1; while(ub - lb > 1){ long long mid = (ub + lb) / 2; long long t = mid * (K - 1); if(t < temp) lb = mid; else ub = mid; } ans.push_back(ub + temp); } while(Q--){ long long N; cin >> N; if(N <= K) cout << N << endl; else{ int ind = lower_bound(ans.begin(), ans.end(), N) - ans.begin(); cout << ans[ind - 1] << endl; } } }