結果

問題 No.560 ふしぎなナップサック
ユーザー htensaihtensai
提出日時 2019-11-14 21:23:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 73,568 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-09-22 01:50:27
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,148 KB
testcase_01 AC 102 ms
39,916 KB
testcase_02 AC 110 ms
40,576 KB
testcase_03 AC 116 ms
40,840 KB
testcase_04 AC 123 ms
41,012 KB
testcase_05 AC 118 ms
41,124 KB
testcase_06 AC 109 ms
40,548 KB
testcase_07 AC 119 ms
41,184 KB
testcase_08 AC 120 ms
40,964 KB
testcase_09 AC 106 ms
40,204 KB
testcase_10 AC 119 ms
41,240 KB
testcase_11 AC 115 ms
41,160 KB
testcase_12 AC 117 ms
41,072 KB
testcase_13 AC 125 ms
41,028 KB
testcase_14 AC 120 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		double m = sc.nextInt();
		int n = sc.nextInt();
		for (int i = 0; i < n; i++) {
		    m = m * 2 / 3 + (m + 1) / 3;
		}
		System.out.println(m);
	}
}
0