結果

問題 No.1742 Binary Indexed Train
ユーザー ks2mks2m
提出日時 2021-11-12 22:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 900 ms / 3,000 ms
コード長 980 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 51,240 KB
最終ジャッジ日時 2024-05-04 10:25:34
合計ジャッジ時間 22,420 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,104 KB
testcase_01 AC 52 ms
37,072 KB
testcase_02 AC 57 ms
37,200 KB
testcase_03 AC 885 ms
50,976 KB
testcase_04 AC 900 ms
50,972 KB
testcase_05 AC 837 ms
49,708 KB
testcase_06 AC 379 ms
47,576 KB
testcase_07 AC 363 ms
47,352 KB
testcase_08 AC 801 ms
49,408 KB
testcase_09 AC 794 ms
48,976 KB
testcase_10 AC 825 ms
49,112 KB
testcase_11 AC 850 ms
50,260 KB
testcase_12 AC 838 ms
50,292 KB
testcase_13 AC 887 ms
50,764 KB
testcase_14 AC 833 ms
50,044 KB
testcase_15 AC 329 ms
48,596 KB
testcase_16 AC 311 ms
47,988 KB
testcase_17 AC 556 ms
49,992 KB
testcase_18 AC 525 ms
49,780 KB
testcase_19 AC 335 ms
48,824 KB
testcase_20 AC 159 ms
41,268 KB
testcase_21 AC 343 ms
48,604 KB
testcase_22 AC 639 ms
49,980 KB
testcase_23 AC 181 ms
41,872 KB
testcase_24 AC 151 ms
40,688 KB
testcase_25 AC 539 ms
49,728 KB
testcase_26 AC 361 ms
47,480 KB
testcase_27 AC 563 ms
49,648 KB
testcase_28 AC 193 ms
43,336 KB
testcase_29 AC 572 ms
49,204 KB
testcase_30 AC 552 ms
50,088 KB
testcase_31 AC 850 ms
51,240 KB
testcase_32 AC 513 ms
49,312 KB
testcase_33 AC 257 ms
43,884 KB
testcase_34 AC 636 ms
49,748 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 n2 = 1L << n;
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			long ans = 0;
			long now = s[i];
			while (now < t[i]) {
				long v = Long.lowestOneBit(now);
				if (v == 0) {
					v = n2;
				}
				while (v > 0) {
					if (now % v == 0 && now + v <= t[i]) {
						ans++;
						now += v;
						break;
					}
					v /= 2;
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0