結果
問題 | No.1673 Lamps on a line |
ユーザー | GrayCoder |
提出日時 | 2021-09-10 23:14:49 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 347 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 25,108 KB |
最終ジャッジ日時 | 2024-06-12 03:48:24 |
合計ジャッジ時間 | 5,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,000 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 199 ms
14,720 KB |
testcase_03 | AC | 192 ms
14,720 KB |
testcase_04 | AC | 329 ms
17,920 KB |
testcase_05 | AC | 49 ms
11,136 KB |
testcase_06 | AC | 324 ms
16,768 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
from sys import stdin def main(): input = lambda: stdin.readline()[:-1] N, Q = map(int, input().split()) LR = [tuple(map(int, input().split())) for _ in [0] * Q] n = 0 for l, r in LR: a = "1" * (r - l + 1) + "0" * (N - r) n = n ^ int(a, 2) ans = sum(map(int, bin(n)[2:])) print(ans) main()