結果

問題 No.897 compαctree
ユーザー joybeeee
提出日時 2020-05-15 21:35:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-09-19 08:54:00
合計ジャッジ時間 4,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int q = sc.nextInt();
      while(q-- > 0) {
        int n = sc.nextInt();
        long k = sc.nextInt();
        if(k == 1) {
          System.out.println(n - 1);
          continue;
        }
        int d = 0;
        while(n > 0) {
          n -= Math.pow(k, d);
          if(n <= 0) break;
          d++;
        }
        System.out.println(d);
      }
  }
}
0