結果

問題 No.1673 Lamps on a line
ユーザー horiesinitihoriesiniti
提出日時 2023-07-07 06:05:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-07-21 00:52:47
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 216 ms
12,160 KB
testcase_03 AC 215 ms
12,416 KB
testcase_04 AC 310 ms
12,288 KB
testcase_05 AC 102 ms
12,288 KB
testcase_06 AC 288 ms
12,288 KB
testcase_07 AC 280 ms
15,104 KB
testcase_08 AC 98 ms
14,208 KB
testcase_09 AC 376 ms
12,672 KB
testcase_10 AC 384 ms
14,208 KB
testcase_11 AC 118 ms
14,336 KB
testcase_12 AC 470 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split(" ").map{|e| e.to_i}
ds=[0]*(n+1)
ans=0
m.times{
	l,r=gets.split(" ").map{|e| e.to_i}
	l.upto(r){|i|
		if ds[i]==0 then
			ans+=1
			ds[i]=1
		else
			ans-=1
			ds[i]=0
		end
	}
	puts ans
}
0