結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2022-09-07 09:32:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 664 ms / 3,000 ms
コード長 1,523 bytes
コンパイル時間 5,165 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 68,436 KB
最終ジャッジ日時 2024-11-22 11:47:17
合計ジャッジ時間 21,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,380 KB
testcase_01 AC 54 ms
49,912 KB
testcase_02 AC 54 ms
50,136 KB
testcase_03 AC 603 ms
68,360 KB
testcase_04 AC 601 ms
68,428 KB
testcase_05 AC 591 ms
68,384 KB
testcase_06 AC 276 ms
58,132 KB
testcase_07 AC 276 ms
58,140 KB
testcase_08 AC 649 ms
67,824 KB
testcase_09 AC 658 ms
67,884 KB
testcase_10 AC 664 ms
68,000 KB
testcase_11 AC 641 ms
68,364 KB
testcase_12 AC 639 ms
68,436 KB
testcase_13 AC 580 ms
67,968 KB
testcase_14 AC 580 ms
68,168 KB
testcase_15 AC 260 ms
62,440 KB
testcase_16 AC 255 ms
62,260 KB
testcase_17 AC 378 ms
58,508 KB
testcase_18 AC 375 ms
58,596 KB
testcase_19 AC 257 ms
58,200 KB
testcase_20 AC 133 ms
52,040 KB
testcase_21 AC 268 ms
58,396 KB
testcase_22 AC 485 ms
65,824 KB
testcase_23 AC 157 ms
52,632 KB
testcase_24 AC 135 ms
52,132 KB
testcase_25 AC 522 ms
67,552 KB
testcase_26 AC 273 ms
58,136 KB
testcase_27 AC 496 ms
65,936 KB
testcase_28 AC 158 ms
54,540 KB
testcase_29 AC 561 ms
65,880 KB
testcase_30 AC 356 ms
63,676 KB
testcase_31 AC 578 ms
68,188 KB
testcase_32 AC 350 ms
63,628 KB
testcase_33 AC 203 ms
58,708 KB
testcase_34 AC 529 ms
66,196 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