結果

問題 No.1869 Doubling?
ユーザー ks2mks2m
提出日時 2022-03-11 22:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 2,883 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-09-16 02:47:57
合計ジャッジ時間 9,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,920 KB
testcase_01 AC 127 ms
40,956 KB
testcase_02 AC 129 ms
40,960 KB
testcase_03 AC 130 ms
41,212 KB
testcase_04 AC 128 ms
40,896 KB
testcase_05 AC 124 ms
41,156 KB
testcase_06 AC 120 ms
40,004 KB
testcase_07 AC 116 ms
39,996 KB
testcase_08 AC 132 ms
40,968 KB
testcase_09 AC 132 ms
41,056 KB
testcase_10 AC 130 ms
40,652 KB
testcase_11 AC 132 ms
41,284 KB
testcase_12 AC 133 ms
41,100 KB
testcase_13 AC 134 ms
41,012 KB
testcase_14 AC 117 ms
40,032 KB
testcase_15 AC 129 ms
40,988 KB
testcase_16 AC 119 ms
39,940 KB
testcase_17 AC 121 ms
39,820 KB
testcase_18 AC 131 ms
41,140 KB
testcase_19 AC 135 ms
41,208 KB
testcase_20 AC 135 ms
41,164 KB
testcase_21 AC 133 ms
41,080 KB
testcase_22 AC 136 ms
41,284 KB
testcase_23 AC 132 ms
40,988 KB
testcase_24 AC 133 ms
41,116 KB
testcase_25 AC 133 ms
41,112 KB
testcase_26 AC 119 ms
39,804 KB
testcase_27 AC 129 ms
41,108 KB
testcase_28 AC 128 ms
40,952 KB
testcase_29 AC 131 ms
41,004 KB
testcase_30 AC 132 ms
40,952 KB
testcase_31 AC 132 ms
41,028 KB
testcase_32 AC 132 ms
40,964 KB
testcase_33 AC 132 ms
40,932 KB
testcase_34 AC 132 ms
41,152 KB
testcase_35 AC 132 ms
40,960 KB
testcase_36 AC 130 ms
40,876 KB
testcase_37 AC 131 ms
41,016 KB
testcase_38 AC 128 ms
41,100 KB
testcase_39 AC 117 ms
40,088 KB
testcase_40 AC 118 ms
40,288 KB
testcase_41 AC 133 ms
40,736 KB
testcase_42 AC 131 ms
41,144 KB
testcase_43 AC 133 ms
41,224 KB
testcase_44 AC 134 ms
41,124 KB
testcase_45 AC 130 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		sc.close();

		if (n < 32 && 1 << (n - 1) < m) {
			long ans = 0;
			for (int i = 0; i < n; i++) {
				ans += 1 << i;
			}
			System.out.println(ans);
		} else {
			int p = m;
			long ans = m;
			for (int i = 1; i < n; i++) {
				if (p == 1) {
					ans += n - i;
					break;
				}
				if (p % 2 == 0) {
					p = p / 2;
				} else {
					p = p / 2 + 1;
				}
				ans += p;
			}
			System.out.println(ans);
		}
	}
}
0