結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
vector<int> ans;
int f(int n , int k){
	if(k == 1){
		return n - 1;
	}
	int res = 0;
	while(n > 0){
		n /= k;
		res++;
	}
	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