結果

問題 No.320 眠れない夜に
ユーザー threepipes_sthreepipes_s
提出日時 2015-12-03 06:19:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-09-14 08:22:10
合計ジャッジ時間 8,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,576 KB
testcase_01 AC 135 ms
41,296 KB
testcase_02 AC 137 ms
41,264 KB
testcase_03 AC 136 ms
41,164 KB
testcase_04 AC 136 ms
41,032 KB
testcase_05 AC 136 ms
41,256 KB
testcase_06 AC 134 ms
41,092 KB
testcase_07 AC 135 ms
40,840 KB
testcase_08 AC 137 ms
41,076 KB
testcase_09 AC 134 ms
41,288 KB
testcase_10 AC 137 ms
41,320 KB
testcase_11 AC 136 ms
41,296 KB
testcase_12 AC 135 ms
41,268 KB
testcase_13 AC 134 ms
41,072 KB
testcase_14 AC 136 ms
41,156 KB
testcase_15 AC 132 ms
41,156 KB
testcase_16 AC 136 ms
41,152 KB
testcase_17 AC 123 ms
39,660 KB
testcase_18 AC 137 ms
40,908 KB
testcase_19 AC 123 ms
39,800 KB
testcase_20 AC 121 ms
39,752 KB
testcase_21 AC 135 ms
41,288 KB
testcase_22 AC 135 ms
41,204 KB
testcase_23 AC 137 ms
41,236 KB
testcase_24 AC 137 ms
41,264 KB
testcase_25 AC 121 ms
39,684 KB
testcase_26 AC 133 ms
41,236 KB
testcase_27 AC 121 ms
40,016 KB
testcase_28 AC 129 ms
40,924 KB
testcase_29 AC 132 ms
41,060 KB
testcase_30 AC 135 ms
40,944 KB
testcase_31 AC 123 ms
39,884 KB
testcase_32 AC 134 ms
40,940 KB
testcase_33 AC 133 ms
41,000 KB
testcase_34 AC 133 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
public class Main {
	public static void main(String[] args)
	{(new Solve()).solve();}
}

class Solve{
	void solve(){
		Scanner in = new Scanner(System.in);
		int n = in.nextInt();
		long m = in.nextLong();
		System.out.println(getMistake(n, m));
		in.close();
	}
	
	int getMistake(int n, long m){
		long[] fib = new long[n];
		fib[0] = fib[1] = 1;
		for(int i=2; i<n; i++){
			fib[i] = fib[i-1]+fib[i-2];
		}
		int count = 0;
		long diff = fib[n-1]-m;
		for(int i=n-3; i>=0; i--){
			if(diff>=fib[i]){
				diff -= fib[i];
				count++;
			}
			if(diff==0) return count;
		}
		return -1;
	}
}
0