結果
問題 | No.1742 Binary Indexed Train |
ユーザー | gr1msl3y |
提出日時 | 2021-11-12 22:39:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 646 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 82,676 KB |
実行使用メモリ | 92,124 KB |
最終ジャッジ日時 | 2024-05-04 10:07:10 |
合計ジャッジ時間 | 7,541 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
51,968 KB |
testcase_01 | AC | 30 ms
52,224 KB |
testcase_02 | AC | 33 ms
51,968 KB |
testcase_03 | AC | 241 ms
91,520 KB |
testcase_04 | AC | 225 ms
91,648 KB |
testcase_05 | AC | 229 ms
91,648 KB |
testcase_06 | AC | 184 ms
90,924 KB |
testcase_07 | AC | 186 ms
90,976 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 193 ms
90,112 KB |
testcase_14 | AC | 201 ms
89,984 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 131 ms
81,816 KB |
testcase_31 | AC | 228 ms
89,856 KB |
testcase_32 | AC | 122 ms
82,044 KB |
testcase_33 | AC | 87 ms
77,184 KB |
testcase_34 | AC | 169 ms
85,920 KB |
ソースコード
N, Q = map(int, input().split()) query = [list(map(int, input().split())) for _ in range(Q)] ans = [0]*Q for i in range(Q): s, t = query[i] if s == 0: ans[i] = str(bin(t)).count('1') continue ct = 0 ind = t.bit_length()-1 while (s >> ind) & 1 and (t >> ind) & 1: s -= 1 << ind t -= 1 << ind ind -= 1 if s == 0: ans[i] = str(bin(t)).count('1') continue for j in range(ind): if (s >> j) & 1: ct += 1 s += 1 << j for j in range(ind-1, -1, -1): if (t >> j) & 1: ct += 1 ans[i] = ct print(*ans, sep='\n')