結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 134 ms
80,128 KB
testcase_03 AC 149 ms
80,640 KB
testcase_04 AC 157 ms
82,368 KB
testcase_05 AC 106 ms
76,928 KB
testcase_06 AC 141 ms
79,488 KB
testcase_07 AC 120 ms
81,664 KB
testcase_08 AC 63 ms
67,584 KB
testcase_09 AC 148 ms
81,664 KB
testcase_10 AC 150 ms
82,856 KB
testcase_11 AC 85 ms
78,464 KB
testcase_12 AC 143 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