結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2022-09-07 09:32:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 827 ms / 3,000 ms
コード長 1,523 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 58,060 KB
最終ジャッジ日時 2024-05-02 02:14:18
合計ジャッジ時間 20,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,804 KB
testcase_01 AC 52 ms
37,084 KB
testcase_02 AC 52 ms
36,760 KB
testcase_03 AC 621 ms
57,812 KB
testcase_04 AC 623 ms
58,060 KB
testcase_05 AC 638 ms
57,816 KB
testcase_06 AC 285 ms
47,012 KB
testcase_07 AC 281 ms
47,112 KB
testcase_08 AC 757 ms
57,168 KB
testcase_09 AC 704 ms
56,680 KB
testcase_10 AC 703 ms
57,248 KB
testcase_11 AC 710 ms
56,924 KB
testcase_12 AC 827 ms
57,440 KB
testcase_13 AC 641 ms
57,412 KB
testcase_14 AC 630 ms
57,904 KB
testcase_15 AC 274 ms
50,380 KB
testcase_16 AC 260 ms
50,304 KB
testcase_17 AC 386 ms
47,404 KB
testcase_18 AC 486 ms
54,924 KB
testcase_19 AC 268 ms
46,852 KB
testcase_20 AC 139 ms
39,636 KB
testcase_21 AC 281 ms
46,520 KB
testcase_22 AC 420 ms
47,508 KB
testcase_23 AC 159 ms
40,744 KB
testcase_24 AC 134 ms
39,324 KB
testcase_25 AC 552 ms
56,688 KB
testcase_26 AC 290 ms
46,876 KB
testcase_27 AC 503 ms
55,952 KB
testcase_28 AC 159 ms
41,192 KB
testcase_29 AC 558 ms
56,632 KB
testcase_30 AC 362 ms
51,960 KB
testcase_31 AC 627 ms
57,460 KB
testcase_32 AC 354 ms
51,968 KB
testcase_33 AC 210 ms
46,112 KB
testcase_34 AC 559 ms
56,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
     public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            long start = sc.nextLong();
            long end = sc.nextLong();
            int ans = 0;
            while (start < end) {
                if (start % 2 == 1) {
                    start++;
                    ans++;
                }
                start >>= 1;
                if (end % 2 == 1) {
                    ans++;
                }
                end >>= 1;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0