結果

問題 No.560 ふしぎなナップサック
ユーザー tentententen
提出日時 2020-09-07 23:08:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 73,836 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-11-29 11:31:15
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,192 KB
testcase_01 AC 114 ms
41,536 KB
testcase_02 AC 114 ms
41,628 KB
testcase_03 AC 112 ms
40,072 KB
testcase_04 AC 111 ms
41,408 KB
testcase_05 AC 112 ms
41,192 KB
testcase_06 AC 119 ms
41,440 KB
testcase_07 AC 114 ms
41,324 KB
testcase_08 AC 118 ms
41,320 KB
testcase_09 AC 105 ms
41,596 KB
testcase_10 AC 127 ms
41,460 KB
testcase_11 AC 126 ms
41,408 KB
testcase_12 AC 113 ms
41,376 KB
testcase_13 AC 111 ms
41,204 KB
testcase_14 AC 118 ms
41,376 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