結果

問題 No.554 recurrence formula
ユーザー fjafjafjafjafjafja
提出日時 2017-08-22 22:11:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 2,997 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-15 04:26:54
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,364 KB
testcase_01 AC 122 ms
41,012 KB
testcase_02 AC 110 ms
40,944 KB
testcase_03 AC 115 ms
40,648 KB
testcase_04 AC 124 ms
41,036 KB
testcase_05 AC 114 ms
41,060 KB
testcase_06 AC 122 ms
41,240 KB
testcase_07 AC 125 ms
41,036 KB
testcase_08 AC 126 ms
41,284 KB
testcase_09 AC 126 ms
40,952 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
					e+=ans;
				}
				else
				{
					ans=p*e;
					o+=ans;
				}
			}while(p!=n);
		}
		System.out.println(ans%(int)(Math.pow(10, 7)+7));
	}
}
0