結果

問題 No.1742 Binary Indexed Train
ユーザー ks2mks2m
提出日時 2021-11-12 22:37:17
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,006 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 56,012 KB
最終ジャッジ日時 2024-05-04 10:03:05
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
42,340 KB
testcase_01 AC 52 ms
37,080 KB
testcase_02 AC 52 ms
37,080 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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