結果

問題 No.954 Result
ユーザー tentententen
提出日時 2020-08-25 17:46:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 85,604 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-07-04 13:04:18
合計ジャッジ時間 9,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,056 KB
testcase_01 AC 123 ms
54,080 KB
testcase_02 AC 116 ms
53,800 KB
testcase_03 AC 123 ms
54,096 KB
testcase_04 AC 129 ms
53,916 KB
testcase_05 AC 124 ms
53,716 KB
testcase_06 AC 123 ms
53,952 KB
testcase_07 AC 125 ms
54,048 KB
testcase_08 AC 128 ms
53,976 KB
testcase_09 AC 112 ms
52,696 KB
testcase_10 AC 114 ms
52,652 KB
testcase_11 AC 141 ms
54,000 KB
testcase_12 AC 128 ms
53,804 KB
testcase_13 AC 112 ms
52,780 KB
testcase_14 AC 115 ms
52,876 KB
testcase_15 AC 122 ms
53,996 KB
testcase_16 AC 112 ms
52,936 KB
testcase_17 AC 114 ms
52,524 KB
testcase_18 AC 126 ms
54,068 KB
testcase_19 AC 115 ms
52,516 KB
testcase_20 AC 127 ms
53,916 KB
testcase_21 AC 115 ms
52,912 KB
testcase_22 AC 124 ms
53,888 KB
testcase_23 AC 125 ms
53,928 KB
testcase_24 AC 127 ms
54,044 KB
testcase_25 AC 120 ms
53,792 KB
testcase_26 AC 116 ms
53,084 KB
testcase_27 AC 123 ms
53,804 KB
testcase_28 AC 124 ms
54,060 KB
testcase_29 AC 124 ms
54,120 KB
testcase_30 AC 126 ms
53,928 KB
testcase_31 AC 111 ms
52,696 KB
testcase_32 AC 127 ms
53,908 KB
testcase_33 AC 128 ms
53,716 KB
testcase_34 AC 124 ms
53,848 KB
testcase_35 AC 123 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long[] arr = new long[5];
        for (int i = 4; i >= 0; i--) {
            arr[i] = sc.nextLong();
        }
        long prepre = 1;
        long pre = 1;
        TreeSet<Long> fibo = new TreeSet<>();
        fibo.add(pre);
        while (pre <= 1000000000000000L) {
            long x = pre + prepre;
            fibo.add(x);
            prepre = pre;
            pre = x;
        }
        int ans = 0;
        if (fibo.contains(arr[0])) {
            ans++;
        } else {
            System.out.println(0);
            return;
        }
        int start = 1;
        if (arr[0] == 1 && arr[1] == 1) {
            start++;
            ans++;
        }
        for (int i = start; i < 5; i++) {
            if (fibo.higher(arr[i - 1]) != arr[i]) {
                break;
            }
            ans++;
        }
        System.out.println(ans);
    }
}
0