結果

問題 No.554 recurrence formula
ユーザー fjafjafjafjafjafja
提出日時 2017-08-22 23:54:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 3,226 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-10-15 04:28:38
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,048 KB
testcase_01 AC 109 ms
40,356 KB
testcase_02 AC 117 ms
41,344 KB
testcase_03 AC 124 ms
41,368 KB
testcase_04 AC 115 ms
41,328 KB
testcase_05 AC 120 ms
41,304 KB
testcase_06 AC 122 ms
41,464 KB
testcase_07 AC 120 ms
41,244 KB
testcase_08 AC 122 ms
41,052 KB
testcase_09 AC 116 ms
40,832 KB
testcase_10 AC 115 ms
41,200 KB
testcase_11 AC 115 ms
41,172 KB
testcase_12 AC 122 ms
41,100 KB
testcase_13 AC 110 ms
40,188 KB
testcase_14 AC 131 ms
41,248 KB
testcase_15 AC 131 ms
41,484 KB
testcase_16 AC 114 ms
39,984 KB
testcase_17 AC 123 ms
41,128 KB
testcase_18 AC 122 ms
40,828 KB
testcase_19 AC 120 ms
41,284 KB
testcase_20 AC 124 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N554
{
	public static void main(String[] args)
	{
		long e=0;//evennumber
		long o=1;//oddnumber
		int p=1;
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		long ans=0;
		if(n==1)
		{
			ans=1;
		}
		else
		{
			do
			{
				ans=0;
				p++;
				if(p%2==0)
				{
					ans=p*o%((long)Math.pow(10, 9)+7);
					e+=ans;
				}
				else
				{
					ans=p*e%((long)Math.pow(10, 9)+7);
					o+=ans;
				}
			}while(p!=n);
		}
		System.out.println(ans%((long)Math.pow(10, 9)+7));
	}
}
0