結果

問題 No.1869 Doubling?
ユーザー ks2mks2m
提出日時 2022-03-11 22:11:32
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 443 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 44,364 KB
最終ジャッジ日時 2024-09-16 02:28:48
合計ジャッジ時間 9,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,252 KB
testcase_01 AC 131 ms
41,016 KB
testcase_02 AC 131 ms
41,124 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 117 ms
40,008 KB
testcase_07 AC 130 ms
41,000 KB
testcase_08 AC 129 ms
41,016 KB
testcase_09 WA -
testcase_10 AC 133 ms
41,240 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 125 ms
40,840 KB
testcase_16 AC 137 ms
41,720 KB
testcase_17 AC 140 ms
41,836 KB
testcase_18 AC 140 ms
41,740 KB
testcase_19 AC 139 ms
41,828 KB
testcase_20 AC 139 ms
41,668 KB
testcase_21 AC 139 ms
41,424 KB
testcase_22 AC 138 ms
41,760 KB
testcase_23 AC 138 ms
41,728 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 119 ms
40,028 KB
testcase_34 AC 133 ms
41,188 KB
testcase_35 AC 129 ms
40,920 KB
testcase_36 AC 133 ms
40,840 KB
testcase_37 AC 120 ms
40,108 KB
testcase_38 AC 131 ms
41,124 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 RE -
testcase_43 RE -
testcase_44 WA -
testcase_45 AC 133 ms
40,860 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();

		int[] a = new int[n];
		a[0] = m;
		long ans = m;
		for (int i = 1; i < n; i++) {
			if (a[i - 1] % 2 == 0) {
				a[i] = a[i - 1] / 2;
			} else {
				a[i] = a[i - 1] / 2 + 1;
			}
			ans += a[i];
		}
		System.out.println(ans);
	}
}
0