結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2021-11-15 10:19:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 393 ms / 3,000 ms
コード長 1,869 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 48,592 KB
最終ジャッジ日時 2024-12-14 07:47:13
合計ジャッジ時間 15,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,100 KB
testcase_01 AC 53 ms
36,992 KB
testcase_02 AC 55 ms
36,968 KB
testcase_03 AC 357 ms
48,564 KB
testcase_04 AC 360 ms
48,284 KB
testcase_05 AC 360 ms
48,584 KB
testcase_06 AC 274 ms
47,260 KB
testcase_07 AC 298 ms
47,284 KB
testcase_08 AC 390 ms
48,164 KB
testcase_09 AC 393 ms
48,472 KB
testcase_10 AC 390 ms
47,968 KB
testcase_11 AC 384 ms
48,164 KB
testcase_12 AC 385 ms
48,176 KB
testcase_13 AC 355 ms
48,408 KB
testcase_14 AC 359 ms
48,592 KB
testcase_15 AC 212 ms
43,664 KB
testcase_16 AC 191 ms
43,508 KB
testcase_17 AC 315 ms
47,324 KB
testcase_18 AC 307 ms
46,572 KB
testcase_19 AC 231 ms
45,408 KB
testcase_20 AC 134 ms
39,540 KB
testcase_21 AC 210 ms
43,844 KB
testcase_22 AC 316 ms
47,128 KB
testcase_23 AC 145 ms
40,172 KB
testcase_24 AC 129 ms
39,280 KB
testcase_25 AC 289 ms
45,624 KB
testcase_26 AC 246 ms
44,416 KB
testcase_27 AC 276 ms
46,004 KB
testcase_28 AC 153 ms
41,096 KB
testcase_29 AC 310 ms
47,736 KB
testcase_30 AC 232 ms
43,916 KB
testcase_31 AC 349 ms
48,516 KB
testcase_32 AC 231 ms
43,612 KB
testcase_33 AC 168 ms
42,116 KB
testcase_34 AC 287 ms
45,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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();
        for (int i = 0; i < q; i++) {
            sb.append(getCount(sc.nextLong(), sc.nextLong())).append("\n");
        }
        System.out.print(sb);
    }
    
    static int getCount(long start, long end) {
        long mid = getMid(start, end);
        return getPop(mid - start) + getPop(end - mid);
    }
    
    static long getMid(long start, long end) {
        long ans = 0;
        for (int i = 60; i >= 0; i--) {
            if ((end & (1L << i)) == 0) {
                continue;
            }
            ans += (1L << i);
            if ((start & (1L << i)) == 0) {
                break;
            }
        }
        return ans;
    }
    
    static int getPop(long x) {
        long pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return (int)pop;
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0