結果

問題 No.1673 Lamps on a line
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-18 19:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,308 KB
最終ジャッジ日時 2024-08-18 19:59:42
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,824 KB
testcase_01 AC 33 ms
52,328 KB
testcase_02 AC 179 ms
77,376 KB
testcase_03 AC 192 ms
77,204 KB
testcase_04 AC 322 ms
76,976 KB
testcase_05 AC 89 ms
76,284 KB
testcase_06 AC 251 ms
76,724 KB
testcase_07 AC 190 ms
79,216 KB
testcase_08 AC 62 ms
70,220 KB
testcase_09 AC 236 ms
76,796 KB
testcase_10 AC 249 ms
78,340 KB
testcase_11 AC 71 ms
75,016 KB
testcase_12 AC 278 ms
80,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=[0]*n
g=0
for i in range(q):
	l,r=map(int,input().split())
	l-=1
	r-=1
	for j in range(l,r+1):
		g-=a[j]
		a[j]^=1
		g+=a[j]
	print(g)
0