結果

問題 No.954 Result
ユーザー ks2mks2m
提出日時 2019-12-17 00:10:49
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 629 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 50,544 KB
最終ジャッジ日時 2024-07-07 06:41:18
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,056 KB
testcase_01 AC 51 ms
50,200 KB
testcase_02 AC 52 ms
50,220 KB
testcase_03 AC 52 ms
50,312 KB
testcase_04 WA -
testcase_05 AC 53 ms
49,872 KB
testcase_06 WA -
testcase_07 AC 53 ms
49,860 KB
testcase_08 AC 51 ms
49,872 KB
testcase_09 AC 52 ms
50,428 KB
testcase_10 AC 51 ms
50,544 KB
testcase_11 AC 51 ms
50,076 KB
testcase_12 AC 53 ms
50,132 KB
testcase_13 AC 50 ms
50,128 KB
testcase_14 AC 51 ms
50,316 KB
testcase_15 AC 53 ms
50,180 KB
testcase_16 AC 52 ms
50,304 KB
testcase_17 AC 53 ms
50,268 KB
testcase_18 AC 52 ms
50,240 KB
testcase_19 AC 51 ms
49,952 KB
testcase_20 AC 52 ms
50,240 KB
testcase_21 AC 51 ms
50,276 KB
testcase_22 AC 53 ms
50,064 KB
testcase_23 AC 51 ms
50,304 KB
testcase_24 AC 50 ms
50,136 KB
testcase_25 AC 50 ms
50,076 KB
testcase_26 AC 52 ms
50,172 KB
testcase_27 AC 51 ms
50,156 KB
testcase_28 AC 49 ms
49,876 KB
testcase_29 AC 52 ms
50,388 KB
testcase_30 AC 51 ms
50,068 KB
testcase_31 AC 49 ms
50,080 KB
testcase_32 AC 51 ms
50,196 KB
testcase_33 AC 50 ms
50,364 KB
testcase_34 AC 52 ms
50,096 KB
testcase_35 AC 51 ms
50,056 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 (n > a[i]) {
				break;
			}
			f1 = f2;
			f2 = n;
		}
		System.out.println(ans);
	}
}
0