結果

問題 No.554 recurrence formula
ユーザー tookunn_1213tookunn_1213
提出日時 2017-08-11 22:48:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,908 bytes
コンパイル時間 2,934 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 49,728 KB
最終ジャッジ日時 2023-08-02 23:14:04
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,224 KB
testcase_01 AC 41 ms
49,224 KB
testcase_02 AC 41 ms
49,376 KB
testcase_03 AC 42 ms
49,548 KB
testcase_04 AC 41 ms
49,308 KB
testcase_05 AC 41 ms
49,344 KB
testcase_06 AC 43 ms
49,368 KB
testcase_07 AC 44 ms
49,332 KB
testcase_08 AC 42 ms
49,220 KB
testcase_09 AC 42 ms
49,460 KB
testcase_10 AC 42 ms
49,360 KB
testcase_11 AC 42 ms
49,236 KB
testcase_12 AC 42 ms
49,232 KB
testcase_13 AC 43 ms
49,276 KB
testcase_14 AC 42 ms
49,188 KB
testcase_15 AC 44 ms
49,188 KB
testcase_16 AC 43 ms
49,148 KB
testcase_17 AC 43 ms
49,728 KB
testcase_18 AC 43 ms
49,236 KB
testcase_19 AC 55 ms
49,284 KB
testcase_20 AC 53 ms
49,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.NoSuchElementException;

public class Main {
	static final int MOD = (int)1e9+7;
	int N;
	long oddSum,evenSum;
	long[] memo;

	public void solve() {
		N = nextInt();

		memo = new long[N+1];
		memo[1] = 1;

		oddSum = 1;
		evenSum = 0;

		for(int i = 2;i <= N;i++){
			if(i % 2 == 0){
				memo[i] = i * oddSum % MOD;
				memo[i] %= MOD;
				evenSum += memo[i];
				evenSum %= MOD;
			}else{
				memo[i] = i * evenSum % MOD;
				memo[i] %= MOD;
				oddSum += memo[i];
				oddSum %= MOD;
			}
		}

		out.println(memo[N]);
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0