結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2021-11-15 10:19:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 380 ms / 3,000 ms
コード長 1,869 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 78,420 KB
実行使用メモリ 48,836 KB
最終ジャッジ日時 2024-05-08 06:15:09
合計ジャッジ時間 13,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,088 KB
testcase_01 AC 50 ms
36,820 KB
testcase_02 AC 50 ms
36,728 KB
testcase_03 AC 310 ms
48,436 KB
testcase_04 AC 323 ms
48,328 KB
testcase_05 AC 335 ms
48,420 KB
testcase_06 AC 284 ms
47,348 KB
testcase_07 AC 288 ms
47,596 KB
testcase_08 AC 378 ms
48,364 KB
testcase_09 AC 380 ms
48,320 KB
testcase_10 AC 377 ms
48,468 KB
testcase_11 AC 368 ms
48,284 KB
testcase_12 AC 352 ms
48,028 KB
testcase_13 AC 319 ms
48,836 KB
testcase_14 AC 313 ms
48,620 KB
testcase_15 AC 190 ms
43,632 KB
testcase_16 AC 179 ms
43,384 KB
testcase_17 AC 270 ms
47,576 KB
testcase_18 AC 264 ms
47,224 KB
testcase_19 AC 207 ms
45,448 KB
testcase_20 AC 120 ms
39,776 KB
testcase_21 AC 190 ms
43,520 KB
testcase_22 AC 276 ms
47,348 KB
testcase_23 AC 137 ms
40,236 KB
testcase_24 AC 123 ms
39,812 KB
testcase_25 AC 259 ms
45,740 KB
testcase_26 AC 220 ms
44,208 KB
testcase_27 AC 248 ms
45,868 KB
testcase_28 AC 143 ms
41,168 KB
testcase_29 AC 282 ms
47,032 KB
testcase_30 AC 194 ms
44,008 KB
testcase_31 AC 304 ms
48,784 KB
testcase_32 AC 201 ms
43,848 KB
testcase_33 AC 147 ms
41,968 KB
testcase_34 AC 254 ms
45,424 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