結果

問題 No.897 compαctree
ユーザー evawenisevawenis
提出日時 2020-06-02 01:02:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 201,456 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-02 06:15:41
合計ジャッジ時間 5,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	int q; cin>>q;
	for(int i=0;i<q;++i){
		int n,k; cin>>n>>k;
		int ans=0;
		if(k==1)ans=n-1;
		else for(int j=1;j<n;j*=k)++ans;
		cout<<ans<<"\n"s;
	}
}
0