結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 41 ms
52,160 KB
testcase_02 AC 123 ms
80,280 KB
testcase_03 AC 149 ms
80,384 KB
testcase_04 AC 147 ms
81,728 KB
testcase_05 AC 112 ms
76,928 KB
testcase_06 AC 151 ms
79,872 KB
testcase_07 AC 122 ms
81,572 KB
testcase_08 AC 70 ms
67,456 KB
testcase_09 AC 149 ms
81,792 KB
testcase_10 AC 154 ms
82,860 KB
testcase_11 AC 90 ms
78,336 KB
testcase_12 AC 155 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