結果

問題 No.44 DPなすごろく
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 10:20:30
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 61,044 KB
最終ジャッジ日時 2024-10-15 00:08:23
合計ジャッジ時間 12,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
61,044 KB
testcase_01 AC 135 ms
53,680 KB
testcase_02 AC 724 ms
53,912 KB
testcase_03 AC 166 ms
54,048 KB
testcase_04 AC 135 ms
53,936 KB
testcase_05 AC 273 ms
53,836 KB
testcase_06 AC 132 ms
54,112 KB
testcase_07 AC 133 ms
53,908 KB
testcase_08 AC 140 ms
54,072 KB
testcase_09 AC 134 ms
53,776 KB
testcase_10 AC 275 ms
53,960 KB
testcase_11 AC 136 ms
53,948 KB
testcase_12 AC 141 ms
53,964 KB
testcase_13 AC 136 ms
53,640 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		dfs(0,n);
		System.out.println(cnt);
	}

	static long cnt=0;
	private static void dfs(int i,int n) {
		if(i>=n){
			if(i==n)cnt++;
			return;
		}
		dfs(i+1,n);
		dfs(i+2,n);
		
	}
}
0