結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 114 ms
80,256 KB
testcase_03 AC 126 ms
80,768 KB
testcase_04 AC 133 ms
82,240 KB
testcase_05 AC 99 ms
76,672 KB
testcase_06 AC 126 ms
79,360 KB
testcase_07 AC 110 ms
81,376 KB
testcase_08 AC 57 ms
67,200 KB
testcase_09 AC 127 ms
82,048 KB
testcase_10 AC 130 ms
82,728 KB
testcase_11 AC 76 ms
78,976 KB
testcase_12 AC 127 ms
86,656 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