結果

問題 No.1673 Lamps on a line
ユーザー mrngmrng
提出日時 2021-12-16 23:28:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 80,036 KB
最終ジャッジ日時 2024-09-13 23:07:50
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 207 ms
76,672 KB
testcase_03 AC 216 ms
77,056 KB
testcase_04 AC 291 ms
76,416 KB
testcase_05 AC 89 ms
76,288 KB
testcase_06 AC 259 ms
77,060 KB
testcase_07 AC 200 ms
79,392 KB
testcase_08 AC 61 ms
68,224 KB
testcase_09 AC 287 ms
76,160 KB
testcase_10 AC 279 ms
77,952 KB
testcase_11 AC 80 ms
74,240 KB
testcase_12 AC 283 ms
80,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
a = 0
on = [0]*n
for _ in range(q):
	l,r = map(int,input().split())
	l -= 1
	r -= 1
	for i in range(l,r+1):
		if on[i]: a -= 1; on[i] = 0
		else: a += 1; on[i] = 1
	print(a)
0