結果
| 問題 |
No.897 compαctree
|
| コンテスト | |
| ユーザー |
mmn15277198
|
| 提出日時 | 2021-01-21 20:50:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 529 bytes |
| コンパイル時間 | 783 ms |
| コンパイル使用メモリ | 74,116 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-25 02:26:14 |
| 合計ジャッジ時間 | 1,544 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 WA * 10 |
ソースコード
#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;
}
mmn15277198