結果

問題 No.2416 vs Slime
ユーザー tentententen
提出日時 2024-07-02 13:11:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 3,561 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-07-02 13:12:07
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,272 KB
testcase_01 AC 55 ms
49,892 KB
testcase_02 AC 55 ms
50,100 KB
testcase_03 AC 55 ms
50,260 KB
testcase_04 AC 56 ms
50,212 KB
testcase_05 AC 55 ms
50,116 KB
testcase_06 AC 56 ms
49,852 KB
testcase_07 AC 55 ms
50,200 KB
testcase_08 AC 55 ms
50,200 KB
testcase_09 AC 56 ms
50,092 KB
testcase_10 AC 57 ms
50,212 KB
testcase_11 AC 56 ms
50,260 KB
testcase_12 AC 55 ms
49,996 KB
testcase_13 AC 57 ms
50,192 KB
testcase_14 AC 58 ms
49,936 KB
testcase_15 AC 56 ms
50,272 KB
testcase_16 AC 55 ms
50,232 KB
testcase_17 AC 59 ms
50,112 KB
testcase_18 AC 55 ms
49,968 KB
testcase_19 AC 56 ms
50,036 KB
testcase_20 AC 56 ms
50,140 KB
testcase_21 AC 55 ms
50,252 KB
testcase_22 AC 56 ms
50,420 KB
testcase_23 AC 57 ms
50,248 KB
testcase_24 AC 57 ms
49,756 KB
testcase_25 AC 57 ms
50,252 KB
testcase_26 AC 55 ms
50,388 KB
testcase_27 AC 55 ms
50,244 KB
testcase_28 AC 56 ms
50,096 KB
testcase_29 AC 54 ms
50,128 KB
testcase_30 AC 54 ms
50,336 KB
testcase_31 AC 56 ms
50,284 KB
testcase_32 AC 57 ms
49,992 KB
testcase_33 AC 55 ms
49,800 KB
testcase_34 AC 56 ms
49,956 KB
testcase_35 AC 56 ms
50,228 KB
testcase_36 AC 56 ms
50,128 KB
testcase_37 AC 55 ms
50,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long h = sc.nextLong();
        long a = sc.nextLong();
        long ans = 0;
        long base = 1;
        while (h > 0) {
            h /= a;
            ans += base;
            base *= 2;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0