結果

問題 No.53 悪の漸化式
ユーザー ぴろずぴろず
提出日時 2014-12-15 12:52:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 76,768 KB
実行使用メモリ 42,060 KB
最終ジャッジ日時 2024-06-11 21:24:36
合計ジャッジ時間 5,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,400 KB
testcase_01 AC 129 ms
41,324 KB
testcase_02 AC 130 ms
41,856 KB
testcase_03 AC 130 ms
41,684 KB
testcase_04 AC 129 ms
41,324 KB
testcase_05 AC 132 ms
41,372 KB
testcase_06 AC 130 ms
41,700 KB
testcase_07 AC 134 ms
41,452 KB
testcase_08 AC 132 ms
41,836 KB
testcase_09 AC 133 ms
41,964 KB
testcase_10 AC 131 ms
41,972 KB
testcase_11 AC 132 ms
41,940 KB
testcase_12 AC 134 ms
41,924 KB
testcase_13 AC 134 ms
41,740 KB
testcase_14 AC 138 ms
41,912 KB
testcase_15 AC 137 ms
41,924 KB
testcase_16 AC 140 ms
42,028 KB
testcase_17 AC 143 ms
41,892 KB
testcase_18 AC 145 ms
41,900 KB
testcase_19 AC 144 ms
42,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no053;

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		BigDecimal x0 = new BigDecimal("4");
		BigDecimal x1 = new BigDecimal("3");
		BigDecimal c1 = new BigDecimal("19");
		BigDecimal c2 = new BigDecimal("-12");
		BigDecimal c3 = new BigDecimal("4");
		if (n <= 1) {
			if (n == 0) {
				System.out.println(x0);
			}else{
				System.out.println(x1);
			}
			return;
		}
		BigDecimal x2 = BigDecimal.ZERO;
		for(int i=0;i<n-1;i++) {
//			System.out.println(x2);
			x2 = x1.multiply(c1).add(x0.multiply(c2)).divide(c3);
			x0 = x1;
			x1 = x2;
		}
		if (x2.compareTo(new BigDecimal("1E-9")) <= 0) {
			System.out.println(0);
		}else{
			System.out.println(x2.setScale(10,BigDecimal.ROUND_HALF_EVEN).toPlainString());
		}
	}

}
0