結果

問題 No.44 DPなすごろく
ユーザー Mcpu3Mcpu3
提出日時 2018-09-21 22:52:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-18 08:48:55
合計ジャッジ時間 5,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,508 KB
testcase_01 AC 104 ms
40,060 KB
testcase_02 AC 101 ms
40,036 KB
testcase_03 AC 115 ms
41,272 KB
testcase_04 AC 119 ms
41,572 KB
testcase_05 AC 130 ms
41,320 KB
testcase_06 AC 118 ms
41,240 KB
testcase_07 AC 116 ms
41,308 KB
testcase_08 AC 117 ms
41,100 KB
testcase_09 AC 115 ms
41,224 KB
testcase_10 AC 104 ms
40,208 KB
testcase_11 AC 123 ms
41,252 KB
testcase_12 AC 101 ms
40,188 KB
testcase_13 AC 115 ms
41,456 KB
testcase_14 AC 118 ms
41,600 KB
testcase_15 AC 116 ms
41,360 KB
testcase_16 AC 113 ms
41,372 KB
testcase_17 AC 119 ms
41,364 KB
testcase_18 AC 116 ms
41,136 KB
testcase_19 AC 115 ms
41,348 KB
testcase_20 AC 102 ms
40,080 KB
testcase_21 AC 118 ms
41,368 KB
testcase_22 AC 118 ms
41,416 KB
testcase_23 AC 106 ms
40,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        long n=sc.nextLong(),t[]=new long[3];
        sc.close();
        t[0]=1;
        t[1]=2;
        for(int i=2;i<n;++i){
            t[2]=t[0]+t[1];
            t[0]=t[1];
            t[1]=t[2];
        }
        System.out.print(t[1]);
    }
}
0