結果
問題 | No.1742 Binary Indexed Train |
ユーザー | Shirotsume |
提出日時 | 2021-10-22 20:10:52 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 507 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 68,676 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 11:00:05 |
合計ジャッジ時間 | 6,445 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 153 ms
6,816 KB |
testcase_07 | AC | 151 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 55 ms
6,820 KB |
testcase_16 | WA | - |
testcase_17 | AC | 170 ms
6,820 KB |
testcase_18 | AC | 167 ms
6,816 KB |
testcase_19 | AC | 92 ms
6,816 KB |
testcase_20 | AC | 9 ms
6,820 KB |
testcase_21 | AC | 63 ms
6,820 KB |
testcase_22 | AC | 181 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 104 ms
6,816 KB |
testcase_27 | WA | - |
testcase_28 | AC | 18 ms
6,816 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <iostream> using namespace std; int solve(long long int s, long long int t, int n){ long long int k = 1<<n; while (!((t - 1) / k > (s - 1) / k)){ k /= 2; } long long int mid = ((s+k-1)/k) * k; return __builtin_popcountll(mid - s) + __builtin_popcountll(t - mid); } int main(void){ int n, q; cin >> n >> q; for(int i = 0; i < q; i++){ long long int s, t; cin >> s >> t; cout << solve(s, t, n) << endl; } return 0; }