結果

問題 No.44 DPなすごろく
ユーザー kuramubonnkuramubonn
提出日時 2023-02-04 15:13:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-07-03 12:34:34
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,892 KB
testcase_01 AC 123 ms
53,776 KB
testcase_02 AC 124 ms
53,888 KB
testcase_03 AC 124 ms
53,752 KB
testcase_04 AC 107 ms
53,052 KB
testcase_05 AC 105 ms
52,972 KB
testcase_06 AC 104 ms
52,932 KB
testcase_07 AC 105 ms
52,632 KB
testcase_08 AC 114 ms
53,824 KB
testcase_09 AC 116 ms
53,964 KB
testcase_10 AC 108 ms
52,908 KB
testcase_11 AC 108 ms
52,688 KB
testcase_12 AC 108 ms
53,144 KB
testcase_13 AC 127 ms
54,144 KB
testcase_14 AC 124 ms
54,160 KB
testcase_15 AC 109 ms
52,780 KB
testcase_16 AC 107 ms
52,936 KB
testcase_17 AC 123 ms
54,200 KB
testcase_18 AC 121 ms
54,052 KB
testcase_19 AC 121 ms
53,876 KB
testcase_20 AC 117 ms
54,156 KB
testcase_21 AC 108 ms
53,088 KB
testcase_22 AC 121 ms
53,904 KB
testcase_23 AC 118 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		long [] t = new long [] {2,1};
		for(int i = 3 ; i <= num ; i++) t[i%2] = t[0] + t[1];
		System.out.println(t[num % 2]);
	}
}
0