結果

問題 No.53 悪の漸化式
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-10 04:32:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,210 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-11-29 00:25:59
合計ジャッジ時間 6,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,148 KB
testcase_01 AC 131 ms
41,296 KB
testcase_02 AC 131 ms
41,388 KB
testcase_03 AC 132 ms
41,072 KB
testcase_04 AC 131 ms
41,224 KB
testcase_05 AC 133 ms
41,204 KB
testcase_06 AC 131 ms
41,404 KB
testcase_07 AC 133 ms
41,536 KB
testcase_08 AC 133 ms
41,200 KB
testcase_09 AC 131 ms
41,172 KB
testcase_10 AC 132 ms
41,216 KB
testcase_11 AC 133 ms
41,412 KB
testcase_12 AC 134 ms
41,688 KB
testcase_13 AC 131 ms
41,144 KB
testcase_14 AC 133 ms
41,292 KB
testcase_15 AC 134 ms
41,392 KB
testcase_16 AC 134 ms
41,252 KB
testcase_17 AC 135 ms
41,608 KB
testcase_18 AC 134 ms
41,488 KB
testcase_19 AC 132 ms
41,504 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