結果

問題 No.320 眠れない夜に
ユーザー 37zigen37zigen
提出日時 2016-05-03 22:19:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 77,712 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-05 06:01:34
合計ジャッジ時間 7,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,156 KB
testcase_01 AC 127 ms
41,600 KB
testcase_02 AC 122 ms
40,080 KB
testcase_03 AC 135 ms
41,200 KB
testcase_04 AC 131 ms
40,816 KB
testcase_05 AC 132 ms
40,984 KB
testcase_06 AC 134 ms
41,068 KB
testcase_07 AC 131 ms
41,224 KB
testcase_08 AC 125 ms
41,312 KB
testcase_09 AC 130 ms
41,260 KB
testcase_10 AC 131 ms
40,948 KB
testcase_11 AC 133 ms
41,224 KB
testcase_12 AC 134 ms
41,340 KB
testcase_13 AC 129 ms
40,792 KB
testcase_14 AC 131 ms
40,968 KB
testcase_15 AC 130 ms
41,324 KB
testcase_16 AC 132 ms
41,308 KB
testcase_17 AC 129 ms
41,172 KB
testcase_18 AC 129 ms
41,264 KB
testcase_19 AC 131 ms
41,288 KB
testcase_20 AC 130 ms
40,992 KB
testcase_21 AC 130 ms
41,188 KB
testcase_22 AC 132 ms
41,268 KB
testcase_23 AC 115 ms
39,952 KB
testcase_24 AC 128 ms
40,996 KB
testcase_25 AC 134 ms
41,332 KB
testcase_26 AC 135 ms
41,368 KB
testcase_27 AC 133 ms
41,268 KB
testcase_28 AC 132 ms
41,188 KB
testcase_29 AC 134 ms
41,304 KB
testcase_30 AC 133 ms
40,864 KB
testcase_31 AC 130 ms
41,236 KB
testcase_32 AC 131 ms
41,168 KB
testcase_33 AC 115 ms
39,788 KB
testcase_34 AC 128 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	long[] fibo;
	void solve(){
		Scanner sc=new Scanner(System.in);
		fibo=new long[81];fibo[1]=1;fibo[2]=1;
		for(int i=3;i<=80;i++)fibo[i]=fibo[i-1]+fibo[i-2];
		int n=sc.nextInt();
		long m=sc.nextLong();
		m=fibo[n]-m;
		int count=0;
		for(long i=n-2;i>=1;i--){
			if(fibo[(int)i]<=m){
				m-=fibo[(int)i];
				count++;
			}
			if(m==0)break;
		}
		if(m!=0)System.out.println(-1);
		else System.out.println(count);
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0