結果

問題 No.786 京都大学の過去問
ユーザー masamasa
提出日時 2019-02-26 10:30:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 77,488 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-11 19:29:48
合計ジャッジ時間 3,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,988 KB
testcase_01 AC 104 ms
41,132 KB
testcase_02 AC 114 ms
41,392 KB
testcase_03 AC 100 ms
41,184 KB
testcase_04 AC 106 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.function.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        Consumer<Integer> consumer = (num) -> {
        	long[] array = new long[num];
        	for (int i = 0; i < num; i++) {
        		if (i == 0) array[i] = 1;
        		else if (i == 1) array[i] = 2;
        		else array[i] = array[i-1] + array[i-2];
        	}
        	
        	System.out.println(array[num-1]);
        };
        
        consumer.accept(sc.nextInt());
    }
}
0