結果

問題 No.560 ふしぎなナップサック
ユーザー tentententen
提出日時 2022-08-02 10:39:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2023-09-30 09:25:05
合計ジャッジ時間 3,772 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,548 KB
testcase_01 AC 41 ms
49,400 KB
testcase_02 AC 42 ms
49,332 KB
testcase_03 AC 42 ms
49,420 KB
testcase_04 AC 43 ms
49,404 KB
testcase_05 AC 42 ms
49,592 KB
testcase_06 AC 43 ms
49,436 KB
testcase_07 AC 43 ms
49,432 KB
testcase_08 AC 42 ms
49,404 KB
testcase_09 AC 41 ms
49,440 KB
testcase_10 AC 42 ms
49,516 KB
testcase_11 AC 41 ms
49,452 KB
testcase_12 AC 42 ms
49,324 KB
testcase_13 AC 41 ms
49,792 KB
testcase_14 AC 41 ms
49,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        double m = sc.nextInt();
        int n = sc.nextInt();
        while (n-- > 0) {
            m = m * 2 / 3 + (m + 1) / 3;
        }
        System.out.println(m);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0