結果

問題 No.53 悪の漸化式
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-10 04:32:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2024-05-06 16:26:45
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,256 KB
testcase_01 AC 124 ms
54,076 KB
testcase_02 AC 123 ms
54,196 KB
testcase_03 AC 123 ms
54,208 KB
testcase_04 AC 125 ms
54,160 KB
testcase_05 AC 129 ms
54,404 KB
testcase_06 AC 125 ms
54,180 KB
testcase_07 AC 110 ms
53,164 KB
testcase_08 AC 119 ms
54,652 KB
testcase_09 AC 117 ms
54,224 KB
testcase_10 AC 125 ms
54,156 KB
testcase_11 AC 126 ms
54,156 KB
testcase_12 AC 108 ms
52,936 KB
testcase_13 AC 117 ms
54,356 KB
testcase_14 AC 123 ms
54,056 KB
testcase_15 AC 121 ms
54,300 KB
testcase_16 AC 119 ms
54,336 KB
testcase_17 AC 147 ms
54,108 KB
testcase_18 AC 121 ms
54,048 KB
testcase_19 AC 119 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        BigDecimal An = new BigDecimal("4");
        BigDecimal t = new BigDecimal("0.75");
        for(int i=0; i<N; i++){
            An=An.multiply(t);
        }
        String ans = An.toPlainString();
        System.out.println(ans);
    }
}
0