結果

問題 No.897 compαctree
ユーザー michonz4michonz4
提出日時 2020-01-05 07:43:59
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-02 09:07:11
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main() {
  int q;
  scanf("%d", &q);

  for (int i=0; i<q; i++) {
    int n, k, cnt=0;
    scanf("%d %d", &n, &k);

    if (k==1) {
      printf("%d\n", n-1);
    } else{
      for (int j=1, l=1; j<=n; j+=pow(k, l), l++) {
        cnt++;
      }
      printf("%d\n", cnt);
    }
  }
  return 0;
}
0