結果

問題 No.954 Result
ユーザー 37zigen37zigen
提出日時 2020-03-18 19:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-07-04 12:44:23
合計ジャッジ時間 8,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,976 KB
testcase_01 AC 140 ms
41,000 KB
testcase_02 AC 139 ms
41,072 KB
testcase_03 AC 136 ms
41,616 KB
testcase_04 AC 136 ms
41,288 KB
testcase_05 AC 133 ms
40,988 KB
testcase_06 AC 134 ms
41,376 KB
testcase_07 AC 133 ms
41,356 KB
testcase_08 AC 134 ms
41,384 KB
testcase_09 AC 140 ms
41,504 KB
testcase_10 AC 139 ms
41,580 KB
testcase_11 AC 141 ms
41,512 KB
testcase_12 AC 140 ms
41,352 KB
testcase_13 AC 142 ms
41,384 KB
testcase_14 AC 146 ms
41,252 KB
testcase_15 AC 145 ms
41,392 KB
testcase_16 AC 142 ms
41,288 KB
testcase_17 AC 138 ms
41,252 KB
testcase_18 AC 134 ms
41,284 KB
testcase_19 AC 135 ms
41,480 KB
testcase_20 AC 132 ms
40,960 KB
testcase_21 AC 130 ms
41,132 KB
testcase_22 AC 132 ms
40,872 KB
testcase_23 AC 134 ms
41,504 KB
testcase_24 AC 133 ms
41,244 KB
testcase_25 AC 133 ms
41,132 KB
testcase_26 AC 118 ms
40,328 KB
testcase_27 AC 133 ms
41,128 KB
testcase_28 AC 133 ms
41,340 KB
testcase_29 AC 135 ms
41,224 KB
testcase_30 AC 135 ms
41,344 KB
testcase_31 AC 136 ms
41,100 KB
testcase_32 AC 132 ms
41,096 KB
testcase_33 AC 134 ms
41,384 KB
testcase_34 AC 135 ms
41,540 KB
testcase_35 AC 136 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = 5;
		long[] a = new long[n];
		for (int i = 0; i < n; ++i)
			a[i] = sc.nextLong();
		long[] Fib = new long[74];
		Fib[0] = Fib[1] = 1;
		for (int i = 2; i < Fib.length; ++i) {
			Fib[i] = Fib[i - 1] + Fib[i - 2];
		}
		int ans = 0;
		int pos = Arrays.binarySearch(Fib, a[n-1]);
		if(a[n-1]==1&&a[n-2]==1) {
			pos=0;
		}else if(a[n-1]==1) {
			pos=1;
		}
		int p=n-1;
		while (p>=0 && pos >= 0 && Fib[pos] == a[p] && p < a.length) {
			++ans;
			++pos;
			--p;
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0