結果

問題 No.1673 Lamps on a line
ユーザー nohakai3nohakai3
提出日時 2022-06-28 21:38:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,428 KB
最終ジャッジ日時 2024-05-01 11:50:26
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,820 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 249 ms
11,264 KB
testcase_03 AC 245 ms
11,264 KB
testcase_04 AC 413 ms
11,776 KB
testcase_05 AC 49 ms
11,136 KB
testcase_06 AC 365 ms
11,520 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
p=[0]*n
anss=[]
for i in range(q):
    l,r=map(int,input().split())
    for j in range(l-1,r):
        if p[j]==1:
            p[j]=0
        else:
            p[j]=1
    anss.append(p.count(1))

for x in anss:
    print(x)
0