結果

問題 No.1742 Binary Indexed Train
ユーザー tentententen
提出日時 2023-06-29 09:05:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 545 ms / 3,000 ms
コード長 2,206 bytes
コンパイル時間 2,972 ms
コンパイル使用メモリ 92,368 KB
実行使用メモリ 59,376 KB
最終ジャッジ日時 2024-07-06 00:55:14
合計ジャッジ時間 16,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,332 KB
testcase_01 AC 43 ms
37,272 KB
testcase_02 AC 44 ms
37,040 KB
testcase_03 AC 466 ms
59,376 KB
testcase_04 AC 451 ms
58,988 KB
testcase_05 AC 441 ms
58,916 KB
testcase_06 AC 237 ms
47,404 KB
testcase_07 AC 237 ms
47,508 KB
testcase_08 AC 511 ms
58,768 KB
testcase_09 AC 543 ms
58,592 KB
testcase_10 AC 510 ms
58,604 KB
testcase_11 AC 545 ms
58,896 KB
testcase_12 AC 452 ms
58,732 KB
testcase_13 AC 448 ms
59,216 KB
testcase_14 AC 459 ms
59,132 KB
testcase_15 AC 201 ms
49,820 KB
testcase_16 AC 182 ms
49,036 KB
testcase_17 AC 288 ms
47,676 KB
testcase_18 AC 312 ms
53,748 KB
testcase_19 AC 209 ms
46,836 KB
testcase_20 AC 122 ms
39,828 KB
testcase_21 AC 207 ms
49,596 KB
testcase_22 AC 360 ms
55,848 KB
testcase_23 AC 135 ms
40,832 KB
testcase_24 AC 116 ms
39,864 KB
testcase_25 AC 329 ms
55,280 KB
testcase_26 AC 217 ms
50,148 KB
testcase_27 AC 314 ms
55,544 KB
testcase_28 AC 138 ms
41,104 KB
testcase_29 AC 357 ms
55,816 KB
testcase_30 AC 232 ms
51,536 KB
testcase_31 AC 437 ms
58,808 KB
testcase_32 AC 226 ms
51,492 KB
testcase_33 AC 144 ms
45,620 KB
testcase_34 AC 307 ms
53,180 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) {
            int count = 0;
            long s = sc.nextLong();
            long t = sc.nextLong();
            for (int i = 0; i < n; i++) {
                if ((s & (1L << i)) == 0) {
                    continue;
                }
                if (s + (1L << i) > t) {
                    break;
                }
                s += (1L << i);
                count++;
            } 
            sb.append(count + getPop(s ^ t)).append("\n");
        }
        System.out.print(sb);
    }
    
    static long getPop(long x) {
        long pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return 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