結果

問題 No.954 Result
ユーザー ks2mks2m
提出日時 2019-12-22 00:42:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 640 bytes
コンパイル時間 1,958 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 50,552 KB
最終ジャッジ日時 2024-09-13 06:19:57
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 53 ms
50,288 KB
testcase_02 WA -
testcase_03 AC 53 ms
50,184 KB
testcase_04 AC 53 ms
50,188 KB
testcase_05 AC 53 ms
50,408 KB
testcase_06 AC 53 ms
50,260 KB
testcase_07 AC 53 ms
49,888 KB
testcase_08 AC 53 ms
50,324 KB
testcase_09 AC 54 ms
50,228 KB
testcase_10 AC 53 ms
50,192 KB
testcase_11 AC 54 ms
50,176 KB
testcase_12 AC 54 ms
50,216 KB
testcase_13 AC 54 ms
50,160 KB
testcase_14 AC 54 ms
50,188 KB
testcase_15 AC 55 ms
50,252 KB
testcase_16 AC 53 ms
50,000 KB
testcase_17 AC 54 ms
50,220 KB
testcase_18 AC 54 ms
49,904 KB
testcase_19 AC 53 ms
50,552 KB
testcase_20 AC 53 ms
49,756 KB
testcase_21 AC 53 ms
50,112 KB
testcase_22 AC 54 ms
50,196 KB
testcase_23 AC 53 ms
50,264 KB
testcase_24 AC 53 ms
50,132 KB
testcase_25 AC 53 ms
50,256 KB
testcase_26 AC 53 ms
50,220 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 53 ms
50,104 KB
testcase_30 WA -
testcase_31 AC 53 ms
50,164 KB
testcase_32 AC 53 ms
49,844 KB
testcase_33 AC 53 ms
50,240 KB
testcase_34 AC 53 ms
50,264 KB
testcase_35 AC 53 ms
50,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		long[] a = new long[5];
		for (int i = 0; i < a.length; i++) {
			a[4 - i] = Long.parseLong(br.readLine());
		}
		br.close();

		long f1 = 0;
		long f2 = 1;
		int i = 0;
		int ans = 0;
		if (a[0] == 1) {
			ans++;
			i++;
		}
		while (i < 5) {
			long n = f1 + f2;
			if (n == a[i]) {
				ans++;
				i++;
			} else if (ans > 0 || n > a[i]) {
				break;
			}
			f1 = f2;
			f2 = n;
		}
		System.out.println(ans);
	}
}
0