結果

問題 No.1869 Doubling?
ユーザー tentententen
提出日時 2024-07-29 18:15:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,307 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 79,200 KB
実行使用メモリ 50,520 KB
最終ジャッジ日時 2024-07-29 18:15:09
合計ジャッジ時間 7,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,244 KB
testcase_01 AC 55 ms
50,220 KB
testcase_02 AC 54 ms
50,384 KB
testcase_03 AC 55 ms
50,168 KB
testcase_04 AC 56 ms
50,520 KB
testcase_05 AC 54 ms
50,424 KB
testcase_06 AC 55 ms
50,300 KB
testcase_07 AC 54 ms
50,284 KB
testcase_08 AC 55 ms
49,992 KB
testcase_09 WA -
testcase_10 AC 54 ms
50,296 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 54 ms
50,176 KB
testcase_16 AC 54 ms
50,388 KB
testcase_17 AC 54 ms
50,208 KB
testcase_18 AC 53 ms
50,128 KB
testcase_19 AC 55 ms
50,112 KB
testcase_20 AC 55 ms
49,980 KB
testcase_21 AC 54 ms
50,400 KB
testcase_22 AC 54 ms
50,308 KB
testcase_23 AC 55 ms
50,384 KB
testcase_24 AC 54 ms
50,452 KB
testcase_25 AC 54 ms
50,328 KB
testcase_26 AC 54 ms
50,292 KB
testcase_27 AC 55 ms
49,940 KB
testcase_28 AC 53 ms
49,980 KB
testcase_29 AC 52 ms
50,236 KB
testcase_30 AC 54 ms
50,304 KB
testcase_31 AC 52 ms
50,288 KB
testcase_32 AC 54 ms
50,368 KB
testcase_33 AC 53 ms
50,208 KB
testcase_34 AC 54 ms
50,368 KB
testcase_35 AC 55 ms
50,396 KB
testcase_36 AC 54 ms
50,224 KB
testcase_37 AC 56 ms
50,196 KB
testcase_38 AC 55 ms
50,180 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 55 ms
49,976 KB
testcase_43 AC 54 ms
50,244 KB
testcase_44 WA -
testcase_45 AC 54 ms
50,240 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();
        int n = sc.nextInt();
        int m = sc.nextInt();
        long ans = 0;
        while (n > 0 && m > 1) {
            ans += m;
            m = (m + 1) / 2;
            n--;
        }
        System.out.println(ans + n);
    }
}
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