結果
問題 | No.1673 Lamps on a line |
ユーザー | Theta |
提出日時 | 2022-11-01 19:20:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 156,828 KB |
最終ジャッジ日時 | 2024-07-16 09:24:36 |
合計ジャッジ時間 | 5,813 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,820 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | AC | 333 ms
10,752 KB |
testcase_03 | AC | 326 ms
10,752 KB |
testcase_04 | AC | 582 ms
10,752 KB |
testcase_05 | AC | 54 ms
10,880 KB |
testcase_06 | AC | 493 ms
10,752 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
def main(): N, Q = map(int, input().split()) condition = 0 power_of_two = [2**idx for idx in range(N+1)] for _ in range(Q): L, R = map(int, input().split()) condition = condition ^ (power_of_two[R] - power_of_two[L-1]) print(format(condition, "b").count("1")) if __name__ == "__main__": main()