結果

問題 No.320 眠れない夜に
ユーザー kou6839kou6839
提出日時 2015-12-13 14:22:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,259 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-09-15 11:38:40
合計ジャッジ時間 8,074 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,216 KB
testcase_01 AC 133 ms
41,504 KB
testcase_02 AC 134 ms
41,272 KB
testcase_03 AC 132 ms
41,188 KB
testcase_04 AC 119 ms
40,220 KB
testcase_05 AC 130 ms
41,040 KB
testcase_06 AC 117 ms
39,904 KB
testcase_07 AC 130 ms
41,256 KB
testcase_08 AC 121 ms
40,664 KB
testcase_09 AC 129 ms
41,168 KB
testcase_10 AC 131 ms
41,192 KB
testcase_11 AC 119 ms
40,404 KB
testcase_12 AC 127 ms
41,312 KB
testcase_13 AC 127 ms
41,480 KB
testcase_14 AC 130 ms
41,356 KB
testcase_15 AC 129 ms
41,156 KB
testcase_16 AC 120 ms
39,852 KB
testcase_17 AC 130 ms
41,312 KB
testcase_18 AC 130 ms
41,316 KB
testcase_19 AC 129 ms
41,360 KB
testcase_20 AC 132 ms
40,920 KB
testcase_21 AC 130 ms
41,180 KB
testcase_22 AC 130 ms
41,464 KB
testcase_23 AC 120 ms
40,296 KB
testcase_24 AC 128 ms
41,300 KB
testcase_25 AC 128 ms
41,184 KB
testcase_26 AC 128 ms
41,272 KB
testcase_27 AC 128 ms
41,268 KB
testcase_28 AC 130 ms
41,488 KB
testcase_29 AC 129 ms
40,992 KB
testcase_30 AC 127 ms
41,200 KB
testcase_31 AC 135 ms
41,308 KB
testcase_32 AC 130 ms
40,924 KB
testcase_33 AC 130 ms
41,224 KB
testcase_34 AC 131 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.net.NetworkInterface;
import java.util.*;

public class Main {public static int upper_bound(long[] arr, long key) {
	int len = arr.length;
	int lo = 0;
	int hi = len-1;
	int mid = (lo + hi)/2;
	while (true) {
		long cmp = arr[mid]-key;
		if (cmp == 0 || cmp < 0) {
			lo = mid+1;
			if (hi < lo)
				return mid<len-1?mid+1:-1;
		} else {
			hi = mid-1;
			if (hi < lo)
				return mid;
		}
		mid = (lo + hi)/2;
	}
}
	static long gcd(long a,long b){
		return b == 0 ? a : gcd(b, a%b);
	}
	static long lcm(long a, long b){
		return a*b/gcd(a, b);
	}
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = sc.nextLong();
		if(m<1){ System.out.println(-1);
		return;}
		long[] fib = new long[100];
		fib[0]=1;fib[1]=1;
		for(int i=2;i<100;i++) fib[i]=fib[i-1]+fib[i-2];
		long sa = fib[n-1]-m;
		if(sa==0){
			System.out.println(0);
			return;
		}else if(sa<0){
			System.out.println(-1);
			return;
		}
		int ans = 0;
		long[] aaa = new long[n-2];
		aaa[0]=1;
		aaa[1]=1;
		for(int i=2;i<n-2;i++) aaa[i]=aaa[i-1]+aaa[i-2];
		while(sa>0){
			int x = upper_bound(aaa, sa)-1;
			if(x<0) x=n-3;
			sa-=aaa[x];
			aaa[x]=1;
			Arrays.sort(aaa);
			ans++;
		}
		System.out.println(ans);
	}
}
0