結果
| 問題 |
No.897 compαctree
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-04 21:23:08 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 288 bytes |
| コンパイル時間 | 1,273 ms |
| コンパイル使用メモリ | 165,448 KB |
| 実行使用メモリ | 13,636 KB |
| 最終ジャッジ日時 | 2024-10-03 07:02:54 |
| 合計ジャッジ時間 | 4,649 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 3 TLE * 1 -- * 9 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef long long ll;
typedef pair<ll,int>P;
int main(){
int q;cin>>q;
rep(i,q){
int n,K;cin>>n>>K;
int ans=0,cnt=1,e=1;
while(cnt<n){
ans++;
cnt+=e*K;
e*=K;
}
cout<<ans<<endl;
}
}