結果

問題 No.554 recurrence formula
ユーザー 37zigen37zigen
提出日時 2017-08-12 00:58:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 43,516 KB
最終ジャッジ日時 2024-10-12 22:42:19
合計ジャッジ時間 6,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,212 KB
testcase_01 AC 125 ms
41,020 KB
testcase_02 AC 127 ms
40,892 KB
testcase_03 AC 115 ms
40,216 KB
testcase_04 AC 135 ms
41,048 KB
testcase_05 AC 127 ms
40,888 KB
testcase_06 AC 130 ms
40,848 KB
testcase_07 AC 128 ms
41,292 KB
testcase_08 AC 125 ms
40,968 KB
testcase_09 AC 129 ms
40,796 KB
testcase_10 AC 114 ms
40,188 KB
testcase_11 AC 124 ms
41,384 KB
testcase_12 AC 125 ms
40,960 KB
testcase_13 AC 127 ms
41,432 KB
testcase_14 AC 123 ms
41,084 KB
testcase_15 AC 129 ms
41,232 KB
testcase_16 AC 115 ms
40,276 KB
testcase_17 AC 129 ms
41,168 KB
testcase_18 AC 129 ms
41,272 KB
testcase_19 AC 139 ms
43,316 KB
testcase_20 AC 138 ms
43,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] a = new long[n + 1];
		a[1] = 1;
		long[][] s = new long[2][n + 1];
		s[1][1] = 1;
		for (int i = 2; i <= n; ++i) {
			a[i] = i * s[1 - i % 2][i - 1] % MODULO;
			s[i % 2][i] = s[i % 2][i - 1] + a[i];
			s[1 - i % 2][i] = s[1 - i % 2][i - 1];
			a[i] %= MODULO;
			s[i % 2][i] %= MODULO;
		}
		System.out.println(a[n]);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}
}
0