結果
問題 | No.1651 Removing Cards |
ユーザー | milanis48663220 |
提出日時 | 2021-08-21 00:31:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 180 ms / 2,000 ms |
コード長 | 1,740 bytes |
コンパイル時間 | 1,143 ms |
コンパイル使用メモリ | 122,828 KB |
実行使用メモリ | 8,932 KB |
最終ジャッジ日時 | 2024-10-14 09:09:37 |
合計ジャッジ時間 | 8,154 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 6 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 146 ms
6,816 KB |
testcase_10 | AC | 150 ms
6,820 KB |
testcase_11 | AC | 152 ms
6,820 KB |
testcase_12 | AC | 156 ms
6,816 KB |
testcase_13 | AC | 154 ms
6,820 KB |
testcase_14 | AC | 154 ms
6,816 KB |
testcase_15 | AC | 179 ms
8,932 KB |
testcase_16 | AC | 175 ms
7,660 KB |
testcase_17 | AC | 178 ms
7,912 KB |
testcase_18 | AC | 174 ms
7,524 KB |
testcase_19 | AC | 179 ms
7,916 KB |
testcase_20 | AC | 180 ms
8,676 KB |
testcase_21 | AC | 179 ms
7,784 KB |
testcase_22 | AC | 161 ms
7,528 KB |
testcase_23 | AC | 150 ms
6,816 KB |
testcase_24 | AC | 137 ms
6,820 KB |
testcase_25 | AC | 162 ms
7,532 KB |
testcase_26 | AC | 161 ms
7,652 KB |
testcase_27 | AC | 175 ms
8,676 KB |
testcase_28 | AC | 177 ms
8,424 KB |
testcase_29 | AC | 178 ms
8,804 KB |
testcase_30 | AC | 180 ms
7,784 KB |
testcase_31 | AC | 180 ms
7,660 KB |
testcase_32 | AC | 149 ms
6,816 KB |
testcase_33 | AC | 145 ms
6,816 KB |
testcase_34 | AC | 145 ms
6,820 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> void print_vector(vector<T> v, char delimiter=' '){ for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } vector<int> as_base(int n, int k){ vector<int> ans; while(n != 0) { ans.push_back(n%k); n /= k; } return ans; } // calc a//b template<typename T> T ceil_div(T a, T b){ return (a+b-1)/b; } const ll N_MAX = 1e18; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int k, q; cin >> k >> q; auto f = [&](ll x){ return x-(x/k+1); }; auto nx = [&](ll x) -> ll{ if(x%(k-1) == 0){ return x+(x/(k-1))+1; }else{ return x+(ceil_div<ll>(x, k-1)); } }; vector<ll> x; x.push_back(0); while(true){ ll y = nx(x.back()); x.push_back(y); if(y > N_MAX) break; } // print_vector(x); while(q--){ ll n; cin >> n; n--; auto p = upper_bound(x.begin(), x.end(), n); p--; cout << (*p)+1 << endl; } }