結果

問題 No.897 compαctree
ユーザー joybeeeejoybeeee
提出日時 2020-05-15 21:34:38
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 410 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 47,216 KB
最終ジャッジ日時 2024-09-19 08:53:18
合計ジャッジ時間 7,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
46,576 KB
testcase_01 AC 123 ms
41,452 KB
testcase_02 AC 113 ms
41,584 KB
testcase_03 AC 120 ms
41,332 KB
testcase_04 AC 120 ms
41,320 KB
testcase_05 AC 120 ms
41,312 KB
testcase_06 AC 117 ms
41,192 KB
testcase_07 AC 119 ms
41,292 KB
testcase_08 AC 123 ms
41,176 KB
testcase_09 AC 123 ms
41,196 KB
testcase_10 AC 128 ms
41,312 KB
testcase_11 TLE -
testcase_12 -- -
testcase_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();
        int d = 0;
        while(n > 0) {
          n -= Math.pow(k, d);
          if(n <= 0) break;
          d++;
        }
        System.out.println(d);
      }
  }
}
0