結果

問題 No.897 compαctree
ユーザー mmn15277198
提出日時 2021-01-21 20:29:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 401 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 69,120 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 00:39:24
合計ジャッジ時間 1,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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