結果

問題 No.1673 Lamps on a line
ユーザー Mik10Mik10
提出日時 2021-10-08 15:19:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 194 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 258,560 KB
最終ジャッジ日時 2024-07-23 03:21:59
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,216 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 218 ms
77,056 KB
testcase_03 AC 215 ms
77,048 KB
testcase_04 AC 311 ms
77,016 KB
testcase_05 AC 103 ms
76,800 KB
testcase_06 AC 272 ms
77,312 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = list(map(int, input().split()))
xex = 0
for i in range(q):
    l, r = list(map(int, input().split()))
    x = (pow(2, (r)) - pow(2, (l-1)))
    print(bin(x:=x^xex).count("1"))
    xex = x
0