結果

問題 No.1673 Lamps on a line
ユーザー ch1channnch1channn
提出日時 2022-12-17 23:09:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-11-17 07:36:29
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 136 ms
80,128 KB
testcase_03 AC 133 ms
80,640 KB
testcase_04 AC 149 ms
82,236 KB
testcase_05 AC 107 ms
76,800 KB
testcase_06 AC 140 ms
79,872 KB
testcase_07 AC 120 ms
81,664 KB
testcase_08 AC 61 ms
67,328 KB
testcase_09 AC 137 ms
81,840 KB
testcase_10 AC 145 ms
83,112 KB
testcase_11 AC 85 ms
78,336 KB
testcase_12 AC 144 ms
86,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n,q = map(int,input().split())
R = [0]*(n+1)
ans = []
c = 0
for i in range(q):
	l,r = map(int,input().split())
	for i in range(l-1,r):
		if R[i] == 0:
			c += 1
			R[i] = 1
		elif R[i] == 1:
			c -= 1
			R[i] = 0
	ans.append(c)
print(*ans,sep = "\n")
0