結果

問題 No.1673 Lamps on a line
ユーザー mahiro72mahiro72
提出日時 2021-10-03 02:12:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 191 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,648 KB
最終ジャッジ日時 2024-07-20 21:16:42
合計ジャッジ時間 6,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 277 ms
17,536 KB
testcase_03 AC 276 ms
17,664 KB
testcase_04 AC 482 ms
23,040 KB
testcase_05 AC 53 ms
11,392 KB
testcase_06 AC 412 ms
20,864 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
lr = [list(map(int,input().split()))for _ in range(Q)]
s = [0]*(N+1)
for l,r in lr:
    for i in range(l-1,r):
        s[i]+=1
        s[i]%=2
    print(sum(s))
0