結果

問題 No.53 悪の漸化式
ユーザー リチウムリチウム
提出日時 2014-10-30 23:23:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 1,958 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-09 18:01:02
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,356 KB
testcase_01 AC 124 ms
41,720 KB
testcase_02 AC 116 ms
41,628 KB
testcase_03 AC 121 ms
41,488 KB
testcase_04 AC 117 ms
41,624 KB
testcase_05 AC 116 ms
41,812 KB
testcase_06 AC 118 ms
41,244 KB
testcase_07 AC 117 ms
41,428 KB
testcase_08 AC 121 ms
41,856 KB
testcase_09 AC 114 ms
41,372 KB
testcase_10 AC 101 ms
41,436 KB
testcase_11 AC 105 ms
41,440 KB
testcase_12 AC 114 ms
41,320 KB
testcase_13 AC 116 ms
41,656 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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