結果

問題 No.897 compαctree
ユーザー mmn15277198mmn15277198
提出日時 2021-01-21 20:50:18
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 73,128 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-26 08:42:37
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 WA -
testcase_02 WA -
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 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <math.h>
using namespace std;
using ll = long long;
vector<int> ans;
int f(int n , int k){
	if(k == 1){
		return n - 1;
	}
	int now = 1 , res = 1;
	for(;res <= 1000; res++){
		if(res == 1)now += 1;
		if(res == 2)now += k;
		if(res >= 3)now+= pow(k , res - 1);
		if(now >= n)break;
	}
	return res;
}
int main(){
	int q;
	cin >> q;
	while(q--){
		int n , k;
		cin >> n >> k;
		ans.push_back(f(n , k));
	}
	for(int i = 0; i < ans.size(); i++){
		cout << ans[i] << endl;
	}
	return 0;
}
0