結果

問題 No.320 眠れない夜に
ユーザー htensaihtensai
提出日時 2019-11-22 08:38:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-10-11 02:29:00
合計ジャッジ時間 8,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,140 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 136 ms
41,124 KB
testcase_04 AC 136 ms
41,160 KB
testcase_05 AC 135 ms
40,948 KB
testcase_06 AC 121 ms
39,824 KB
testcase_07 AC 132 ms
41,360 KB
testcase_08 AC 137 ms
41,552 KB
testcase_09 AC 137 ms
41,572 KB
testcase_10 AC 136 ms
41,292 KB
testcase_11 AC 136 ms
41,364 KB
testcase_12 AC 137 ms
41,260 KB
testcase_13 AC 138 ms
41,092 KB
testcase_14 AC 137 ms
41,064 KB
testcase_15 AC 140 ms
41,028 KB
testcase_16 AC 135 ms
41,164 KB
testcase_17 AC 132 ms
41,208 KB
testcase_18 AC 135 ms
41,272 KB
testcase_19 AC 134 ms
41,204 KB
testcase_20 AC 135 ms
41,332 KB
testcase_21 AC 135 ms
41,240 KB
testcase_22 AC 122 ms
39,980 KB
testcase_23 WA -
testcase_24 AC 138 ms
41,152 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 137 ms
41,184 KB
testcase_29 AC 129 ms
41,172 KB
testcase_30 AC 133 ms
41,224 KB
testcase_31 AC 135 ms
41,436 KB
testcase_32 AC 135 ms
41,128 KB
testcase_33 AC 136 ms
41,360 KB
testcase_34 AC 139 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = sc.nextLong();
		long prepre = 1;
		long prev = 1;
	    TreeSet<Long> set = new TreeSet<>();
	    set.add(1L);
		for (int i = 3; i <= n; i++) {
		    long cur = prepre + prev;
		    prepre = prev;
		    prev = cur;
		    set.add(prev);
		}
		long value = prev - m;
		if (value < 0) {
		    System.out.println(-1);
		    return;
		}
		int count = 0;
		while (value > 0) {
		    value -= set.floor(value);
		    count++;
		}
		System.out.println(count);
	}
}
0