結果

問題 No.1869 Doubling?
ユーザー tentententen
提出日時 2022-03-18 11:52:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 77,960 KB
実行使用メモリ 50,540 KB
最終ジャッジ日時 2024-10-02 14:48:07
合計ジャッジ時間 5,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,124 KB
testcase_01 AC 49 ms
36,688 KB
testcase_02 AC 48 ms
37,104 KB
testcase_03 AC 49 ms
37,164 KB
testcase_04 AC 49 ms
36,448 KB
testcase_05 AC 50 ms
37,048 KB
testcase_06 AC 49 ms
36,792 KB
testcase_07 AC 50 ms
36,428 KB
testcase_08 AC 49 ms
37,100 KB
testcase_09 AC 47 ms
36,556 KB
testcase_10 AC 48 ms
37,228 KB
testcase_11 AC 48 ms
37,192 KB
testcase_12 AC 48 ms
36,888 KB
testcase_13 WA -
testcase_14 AC 48 ms
37,152 KB
testcase_15 AC 47 ms
36,968 KB
testcase_16 AC 46 ms
36,448 KB
testcase_17 AC 47 ms
37,004 KB
testcase_18 AC 48 ms
36,724 KB
testcase_19 AC 50 ms
37,000 KB
testcase_20 AC 50 ms
37,220 KB
testcase_21 AC 50 ms
36,940 KB
testcase_22 AC 50 ms
36,888 KB
testcase_23 AC 50 ms
36,892 KB
testcase_24 AC 49 ms
36,708 KB
testcase_25 AC 49 ms
36,900 KB
testcase_26 AC 51 ms
36,428 KB
testcase_27 AC 49 ms
36,452 KB
testcase_28 AC 51 ms
36,900 KB
testcase_29 AC 49 ms
36,688 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 51 ms
36,536 KB
testcase_34 AC 51 ms
36,928 KB
testcase_35 AC 51 ms
36,708 KB
testcase_36 AC 49 ms
36,448 KB
testcase_37 AC 49 ms
37,228 KB
testcase_38 AC 48 ms
37,136 KB
testcase_39 AC 48 ms
36,444 KB
testcase_40 AC 46 ms
36,696 KB
testcase_41 AC 48 ms
36,828 KB
testcase_42 WA -
testcase_43 AC 48 ms
36,684 KB
testcase_44 AC 48 ms
36,712 KB
testcase_45 AC 49 ms
36,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        if (n < 30 && (1 << (n - 1)) <= m) {
            System.out.println((1 << n) - 1);
            return;
        }
        int total = 0;
        while (m > 1) {
            total += m;
            m = (m + 1) / 2;
            n--;
        }
        total += n;
        System.out.println(total);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0