結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2023-04-13 11:12:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 647 ms / 3,000 ms
コード長 2,132 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 92,348 KB
実行使用メモリ 68,780 KB
最終ジャッジ日時 2024-10-09 10:03:23
合計ジャッジ時間 17,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,580 KB
testcase_01 AC 56 ms
50,512 KB
testcase_02 AC 56 ms
50,384 KB
testcase_03 AC 507 ms
66,740 KB
testcase_04 AC 477 ms
66,812 KB
testcase_05 AC 490 ms
66,552 KB
testcase_06 AC 287 ms
58,208 KB
testcase_07 AC 280 ms
58,316 KB
testcase_08 AC 579 ms
68,304 KB
testcase_09 AC 427 ms
58,812 KB
testcase_10 AC 573 ms
68,108 KB
testcase_11 AC 435 ms
58,660 KB
testcase_12 AC 647 ms
68,780 KB
testcase_13 AC 495 ms
66,608 KB
testcase_14 AC 475 ms
66,456 KB
testcase_15 AC 229 ms
60,108 KB
testcase_16 AC 208 ms
55,092 KB
testcase_17 AC 323 ms
58,440 KB
testcase_18 AC 330 ms
58,612 KB
testcase_19 AC 239 ms
57,336 KB
testcase_20 AC 136 ms
52,420 KB
testcase_21 AC 233 ms
55,852 KB
testcase_22 AC 340 ms
59,224 KB
testcase_23 AC 151 ms
52,836 KB
testcase_24 AC 133 ms
52,528 KB
testcase_25 AC 328 ms
58,348 KB
testcase_26 AC 250 ms
60,400 KB
testcase_27 AC 302 ms
58,332 KB
testcase_28 AC 153 ms
54,636 KB
testcase_29 AC 401 ms
66,256 KB
testcase_30 AC 256 ms
61,416 KB
testcase_31 AC 488 ms
66,604 KB
testcase_32 AC 248 ms
61,380 KB
testcase_33 AC 175 ms
57,120 KB
testcase_34 AC 343 ms
63,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 s = sc.nextLong();
            long t = sc.nextLong();
            int count = 0;
            for (int i = 0; s + (1L << i) <= t; i++) {
                if ((s & (1L << i)) > 0) {
                    count++;
                    s += (1L << i);
                }
            }
            count += getPop(s ^ t);
            sb.append(count).append("\n");
        }
        System.out.print(sb);
    }
    
    static int getPop(long x) {
        long pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return (int)pop;
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0