結果
問題 |
No.1742 Binary Indexed Train
|
ユーザー |
![]() |
提出日時 | 2024-08-08 12:55:49 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 611 ms / 3,000 ms |
コード長 | 1,984 bytes |
コンパイル時間 | 2,763 ms |
コンパイル使用メモリ | 88,640 KB |
実行使用メモリ | 70,744 KB |
最終ジャッジ日時 | 2024-08-08 12:56:08 |
合計ジャッジ時間 | 18,054 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static final int MOD = 998244353; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int q = sc.nextInt(); String result = IntStream.range(0, q).mapToObj(a -> { long left = sc.nextLong(); long right = sc.nextLong(); int ans = 0; for (int i = 0; i < 60; i++) { if ((left & (1L << i)) > 0) { if (left + (1L << i) <= right) { left += (1L << i); ans++; } else { break; } } } for (int i = 60; i >= 0; i--) { if (left + (1L << i) <= right) { left += (1L << i); ans++; } } return String.valueOf(ans); }).collect(Collectors.joining("\n")); System.out.println(result); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }