結果

問題 No.1673 Lamps on a line
ユーザー dangodango
提出日時 2023-06-25 12:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-07-02 12:53:49
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 305 ms
79,348 KB
testcase_03 AC 267 ms
77,952 KB
testcase_04 AC 397 ms
78,808 KB
testcase_05 AC 142 ms
77,864 KB
testcase_06 AC 336 ms
78,208 KB
testcase_07 AC 209 ms
79,364 KB
testcase_08 AC 64 ms
69,852 KB
testcase_09 AC 275 ms
76,416 KB
testcase_10 AC 289 ms
77,900 KB
testcase_11 AC 88 ms
78,028 KB
testcase_12 AC 307 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
P = [0] * N
S = 0
for i in range(Q):
	L, R = map(int, input().split())
	S -= sum(P[L - 1:R])
	for j in range(L - 1, R):
		P[j] ^= 1
	S += sum(P[L - 1:R])
	print(S)
0