結果

問題 No.897 compαctree
ユーザー joybeeeejoybeeee
提出日時 2020-05-15 21:35:31
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,352 KB
testcase_01 AC 130 ms
54,220 KB
testcase_02 AC 130 ms
53,840 KB
testcase_03 AC 129 ms
53,904 KB
testcase_04 AC 132 ms
53,724 KB
testcase_05 AC 130 ms
54,076 KB
testcase_06 AC 127 ms
53,988 KB
testcase_07 AC 127 ms
53,740 KB
testcase_08 AC 126 ms
54,380 KB
testcase_09 AC 128 ms
54,024 KB
testcase_10 AC 128 ms
53,804 KB
testcase_11 AC 129 ms
53,904 KB
testcase_12 AC 133 ms
53,992 KB
testcase_13 AC 129 ms
54,332 KB
権限があれば一括ダウンロードができます

ソースコード

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