結果

問題 No.53 悪の漸化式
ユーザー kou6839kou6839
提出日時 2014-12-19 20:00:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 1,803 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-12 01:50:50
合計ジャッジ時間 4,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,152 KB
testcase_01 AC 118 ms
54,120 KB
testcase_02 AC 119 ms
53,916 KB
testcase_03 AC 119 ms
53,920 KB
testcase_04 AC 106 ms
53,084 KB
testcase_05 AC 114 ms
54,100 KB
testcase_06 AC 114 ms
53,984 KB
testcase_07 AC 108 ms
53,596 KB
testcase_08 AC 120 ms
54,060 KB
testcase_09 AC 108 ms
53,324 KB
testcase_10 AC 102 ms
52,804 KB
testcase_11 AC 114 ms
54,136 KB
testcase_12 AC 121 ms
54,072 KB
testcase_13 AC 114 ms
54,180 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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