結果

問題 No.44 DPなすごろく
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 16:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 75,612 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-06-07 17:59:36
合計ジャッジ時間 7,577 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,728 KB
testcase_01 AC 133 ms
54,272 KB
testcase_02 AC 130 ms
54,032 KB
testcase_03 AC 132 ms
54,076 KB
testcase_04 AC 136 ms
53,544 KB
testcase_05 AC 133 ms
53,916 KB
testcase_06 AC 136 ms
53,716 KB
testcase_07 AC 134 ms
54,216 KB
testcase_08 AC 137 ms
53,852 KB
testcase_09 AC 135 ms
53,868 KB
testcase_10 AC 134 ms
53,844 KB
testcase_11 AC 133 ms
54,156 KB
testcase_12 AC 134 ms
53,956 KB
testcase_13 AC 134 ms
53,944 KB
testcase_14 AC 135 ms
54,332 KB
testcase_15 AC 134 ms
53,892 KB
testcase_16 AC 135 ms
53,892 KB
testcase_17 AC 142 ms
53,840 KB
testcase_18 AC 135 ms
53,772 KB
testcase_19 AC 135 ms
53,860 KB
testcase_20 AC 137 ms
54,044 KB
testcase_21 AC 138 ms
54,160 KB
testcase_22 AC 136 ms
54,028 KB
testcase_23 AC 132 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No44 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long n1 = 1;
		long n2 = 0;
		long n = 2;
		for(int i = 3;i <= N;i++) {
			n2 = n1;
			n1 = n;
			n = n1 + n2;
		}
		System.out.println(n);
	}
}
0