結果

問題 No.1673 Lamps on a line
ユーザー 小野寺健小野寺健
提出日時 2021-11-12 17:31:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-05-04 00:12:14
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 212 ms
12,416 KB
testcase_03 AC 211 ms
12,544 KB
testcase_04 AC 302 ms
12,928 KB
testcase_05 AC 110 ms
12,288 KB
testcase_06 AC 285 ms
12,800 KB
testcase_07 AC 282 ms
15,360 KB
testcase_08 AC 98 ms
14,208 KB
testcase_09 AC 373 ms
13,824 KB
testcase_10 AC 391 ms
14,592 KB
testcase_11 AC 121 ms
14,336 KB
testcase_12 AC 462 ms
16,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, Q = gets.split(" ").map{|s| s.to_i}

lamp = Array.new(N, false)
cnt = 0

ans = []
Q.times {
	l, r = gets.split(" ").map{|s| s.to_i}
	(l-1).upto(r-1) {|i|
		if lamp[i] then
			cnt -= 1
		else
			cnt += 1
		end
		lamp[i] = !lamp[i]
	}
	ans << cnt
}

puts ans
0