結果

問題 No.1673 Lamps on a line
ユーザー hydruhydru
提出日時 2021-09-10 21:39:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 417 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 163,096 KB
最終ジャッジ日時 2024-06-11 22:53:32
合計ジャッジ時間 4,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,412 KB
testcase_01 AC 34 ms
51,880 KB
testcase_02 AC 158 ms
76,644 KB
testcase_03 AC 157 ms
76,300 KB
testcase_04 AC 217 ms
76,592 KB
testcase_05 AC 76 ms
76,100 KB
testcase_06 AC 206 ms
76,664 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    x = x - ((x >> 1) & 0x5555555555555555)

    x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333)

    x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f
    x = x + (x >> 8)
    x = x + (x >> 16)
    x = x + (x >> 32)
    return x & 0x0000007f

n,q=map(int,input().split())
A=0
for i in range(q):
    l,r=map(int,input().split())
    l=(1<<l-1)-1
    r=(1<<r)-1
    A=A^l^r
    print(popcount(A))
0