結果

問題 No.1673 Lamps on a line
ユーザー nohakai3nohakai3
提出日時 2022-06-28 21:43:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-05-01 11:54:57
合計ジャッジ時間 4,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 250 ms
11,264 KB
testcase_03 AC 247 ms
11,392 KB
testcase_04 AC 414 ms
11,776 KB
testcase_05 AC 50 ms
11,008 KB
testcase_06 AC 372 ms
11,520 KB
testcase_07 AC 375 ms
16,128 KB
testcase_08 AC 37 ms
12,800 KB
testcase_09 AC 547 ms
14,848 KB
testcase_10 AC 567 ms
16,128 KB
testcase_11 AC 78 ms
13,184 KB
testcase_12 AC 735 ms
15,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for x in anss:
    print(x)
0