結果

問題 No.1742 Binary Indexed Train
ユーザー ks2mks2m
提出日時 2021-11-12 22:37:17
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,006 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 75,776 KB
実行使用メモリ 99,480 KB
最終ジャッジ日時 2024-11-25 20:09:47
合計ジャッジ時間 59,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
41,980 KB
testcase_01 AC 47 ms
87,516 KB
testcase_02 AC 47 ms
57,320 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 348 ms
64,852 KB
testcase_07 AC 323 ms
52,812 KB
testcase_08 AC 2,674 ms
99,480 KB
testcase_09 AC 2,904 ms
54,540 KB
testcase_10 AC 2,864 ms
49,340 KB
testcase_11 AC 2,920 ms
49,496 KB
testcase_12 AC 2,947 ms
48,972 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 454 ms
45,420 KB
testcase_16 AC 591 ms
44,660 KB
testcase_17 AC 777 ms
49,104 KB
testcase_18 AC 855 ms
50,320 KB
testcase_19 AC 356 ms
49,344 KB
testcase_20 AC 153 ms
41,208 KB
testcase_21 AC 527 ms
47,068 KB
testcase_22 AC 899 ms
48,576 KB
testcase_23 AC 242 ms
42,856 KB
testcase_24 AC 156 ms
41,196 KB
testcase_25 AC 1,400 ms
46,920 KB
testcase_26 AC 479 ms
49,628 KB
testcase_27 AC 1,170 ms
46,992 KB
testcase_28 AC 203 ms
45,056 KB
testcase_29 AC 1,056 ms
48,932 KB
testcase_30 AC 1,528 ms
46,428 KB
testcase_31 TLE -
testcase_32 AC 1,548 ms
46,648 KB
testcase_33 AC 634 ms
44,444 KB
testcase_34 AC 2,848 ms
99,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int q = Integer.parseInt(sa[1]);
		long[] s = new long[q];
		long[] t = new long[q];
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			s[i] = Long.parseLong(sa[0]);
			t[i] = Long.parseLong(sa[1]);
		}
		br.close();

		long[] b = new long[n + 1];
		b[0] = 1;
		for (int i = 1; i < b.length; i++) {
			b[i] = b[i - 1] * 2;
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			long ans = 0;
			long now = s[i];
			while (now < t[i]) {
				for (int j = n; j >= 0; j--) {
					if (now % b[j] == 0 && now + b[j] <= t[i]) {
						ans++;
						now += b[j];
						break;
					}
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0