結果

問題 No.554 recurrence formula
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-24 18:34:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 387 bytes
コンパイル時間 3,361 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 61,616 KB
最終ジャッジ日時 2024-10-15 04:15:56
合計ジャッジ時間 10,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
46,292 KB
testcase_01 AC 131 ms
41,040 KB
testcase_02 AC 127 ms
41,008 KB
testcase_03 AC 127 ms
40,992 KB
testcase_04 AC 126 ms
41,300 KB
testcase_05 AC 128 ms
41,088 KB
testcase_06 AC 130 ms
40,988 KB
testcase_07 AC 130 ms
40,952 KB
testcase_08 AC 131 ms
41,096 KB
testcase_09 AC 134 ms
41,032 KB
testcase_10 AC 139 ms
41,216 KB
testcase_11 AC 146 ms
41,008 KB
testcase_12 AC 149 ms
40,984 KB
testcase_13 AC 174 ms
41,032 KB
testcase_14 AC 150 ms
41,216 KB
testcase_15 AC 179 ms
41,544 KB
testcase_16 AC 187 ms
41,416 KB
testcase_17 AC 165 ms
41,168 KB
testcase_18 AC 156 ms
41,240 KB
testcase_19 TLE -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No554 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		final long mod = 1000000007;
		int n = sc.nextInt();
		long a[] = new long[n+1];
		a[0] = 0;
		a[1] = 1;
		for(int i = 2;i <= n;i++) {
			for(int j = 1;j < i;j += 2) {
				a[i] += i * a[i-j] % mod; 
			}
			a[i] %= mod;
		}
		System.out.println(a[n]);
	}
}
0