結果

問題 No.1869 Doubling?
ユーザー tentententen
提出日時 2022-09-28 09:16:25
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,383 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 75,896 KB
最終ジャッジ日時 2024-12-22 17:21:54
合計ジャッジ時間 41,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
42,204 KB
testcase_01 AC 51 ms
36,884 KB
testcase_02 AC 53 ms
36,736 KB
testcase_03 AC 794 ms
37,584 KB
testcase_04 AC 1,975 ms
37,724 KB
testcase_05 TLE -
testcase_06 AC 56 ms
36,936 KB
testcase_07 AC 58 ms
36,960 KB
testcase_08 AC 57 ms
36,632 KB
testcase_09 AC 57 ms
36,872 KB
testcase_10 AC 58 ms
36,884 KB
testcase_11 AC 53 ms
37,088 KB
testcase_12 AC 54 ms
36,956 KB
testcase_13 AC 57 ms
36,992 KB
testcase_14 AC 56 ms
36,632 KB
testcase_15 AC 57 ms
36,856 KB
testcase_16 AC 60 ms
36,648 KB
testcase_17 AC 60 ms
36,844 KB
testcase_18 AC 59 ms
37,080 KB
testcase_19 AC 59 ms
36,760 KB
testcase_20 AC 61 ms
36,916 KB
testcase_21 AC 61 ms
36,928 KB
testcase_22 AC 59 ms
36,940 KB
testcase_23 AC 58 ms
37,168 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 55 ms
36,648 KB
testcase_34 AC 55 ms
37,120 KB
testcase_35 AC 51 ms
36,748 KB
testcase_36 AC 54 ms
36,848 KB
testcase_37 AC 58 ms
36,620 KB
testcase_38 AC 56 ms
36,604 KB
testcase_39 AC 56 ms
36,760 KB
testcase_40 AC 57 ms
36,952 KB
testcase_41 AC 51 ms
37,012 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 52 ms
37,020 KB
testcase_45 AC 54 ms
75,896 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();
        int start;
        if (n < 31 && m > (1 << (n - 1))) {
            start = (1 << (n - 1));
        } else {
            start = m;
        }
        long ans = 0;
        for (int i = 0; i < n; i++) {
            ans += start;
            if (start % 2 == 0) {
                start /= 2;
            } else {
                start = (start + 1) / 2;
            }
        }
        System.out.println(ans);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0