結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 205 ms
12,416 KB
testcase_03 AC 204 ms
12,672 KB
testcase_04 AC 293 ms
12,928 KB
testcase_05 AC 102 ms
12,288 KB
testcase_06 AC 274 ms
12,800 KB
testcase_07 AC 272 ms
15,616 KB
testcase_08 AC 94 ms
14,208 KB
testcase_09 AC 365 ms
13,952 KB
testcase_10 AC 375 ms
14,848 KB
testcase_11 AC 115 ms
14,336 KB
testcase_12 AC 456 ms
16,896 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