結果

問題 No.1869 Doubling?
ユーザー tentententen
提出日時 2022-09-28 09:16:25
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,383 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 77,868 KB
実行使用メモリ 53,304 KB
最終ジャッジ日時 2024-06-02 01:23:57
合計ジャッジ時間 36,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,320 KB
testcase_01 AC 49 ms
50,316 KB
testcase_02 AC 49 ms
50,004 KB
testcase_03 AC 745 ms
50,816 KB
testcase_04 AC 1,851 ms
51,196 KB
testcase_05 AC 1,897 ms
51,196 KB
testcase_06 AC 50 ms
50,332 KB
testcase_07 AC 47 ms
50,232 KB
testcase_08 AC 49 ms
50,288 KB
testcase_09 AC 49 ms
50,176 KB
testcase_10 AC 51 ms
50,064 KB
testcase_11 AC 52 ms
49,992 KB
testcase_12 AC 49 ms
49,876 KB
testcase_13 AC 50 ms
50,220 KB
testcase_14 AC 50 ms
50,324 KB
testcase_15 AC 52 ms
50,248 KB
testcase_16 AC 56 ms
50,348 KB
testcase_17 AC 54 ms
50,072 KB
testcase_18 AC 52 ms
50,444 KB
testcase_19 AC 53 ms
50,260 KB
testcase_20 AC 54 ms
50,392 KB
testcase_21 AC 54 ms
50,436 KB
testcase_22 AC 53 ms
50,328 KB
testcase_23 AC 54 ms
50,280 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 49 ms
50,252 KB
testcase_34 AC 49 ms
50,400 KB
testcase_35 AC 49 ms
50,172 KB
testcase_36 AC 49 ms
50,364 KB
testcase_37 AC 49 ms
50,044 KB
testcase_38 AC 51 ms
50,200 KB
testcase_39 AC 51 ms
50,332 KB
testcase_40 AC 49 ms
50,352 KB
testcase_41 AC 49 ms
49,848 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 50 ms
50,440 KB
testcase_45 AC 50 ms
50,236 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