結果

問題 No.897 compαctree
ユーザー Beat7501Beat7501
提出日時 2019-10-25 19:36:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 78,268 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-21 16:45:24
合計ジャッジ時間 5,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,260 KB
testcase_01 AC 153 ms
41,300 KB
testcase_02 AC 141 ms
41,456 KB
testcase_03 AC 140 ms
41,324 KB
testcase_04 AC 139 ms
41,256 KB
testcase_05 AC 140 ms
41,252 KB
testcase_06 AC 138 ms
41,296 KB
testcase_07 AC 141 ms
41,344 KB
testcase_08 AC 140 ms
41,380 KB
testcase_09 AC 144 ms
41,012 KB
testcase_10 AC 141 ms
41,136 KB
testcase_11 AC 137 ms
41,116 KB
testcase_12 AC 139 ms
41,176 KB
testcase_13 AC 139 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main3{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int q = sc.nextInt();
		long[] n = new long[q];
		long[] k = new long[q];
		for(int i = 0; i < q; i++){
			n[i] = sc.nextLong();
			k[i] = sc.nextLong();
		}
		for(int i = 0; i < q; i++){
			if(k[i] == 1){
				System.out.println(n[i]-1);
			}else{
				int cou = 1;
				long tmp = k[i];
				while(tmp < n[i]){
					tmp*=k[i];
					cou++;
				}
				System.out.println(cou);
			}
		}
	}
}
0