結果

問題 No.2154 あさかつの参加人数
ユーザー tatt61880tatt61880
提出日時 2023-03-13 22:00:43
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 146,576 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-09-18 07:47:28
合計ジャッジ時間 18,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 699 ms
7,680 KB
testcase_01 AC 710 ms
7,680 KB
testcase_02 AC 722 ms
7,552 KB
testcase_03 AC 709 ms
7,552 KB
testcase_04 AC 710 ms
7,552 KB
testcase_05 AC 238 ms
5,376 KB
testcase_06 AC 476 ms
5,376 KB
testcase_07 AC 375 ms
6,272 KB
testcase_08 AC 381 ms
6,528 KB
testcase_09 AC 182 ms
5,760 KB
testcase_10 AC 347 ms
6,016 KB
testcase_11 AC 624 ms
7,168 KB
testcase_12 AC 462 ms
5,888 KB
testcase_13 AC 249 ms
5,376 KB
testcase_14 AC 477 ms
5,760 KB
testcase_15 AC 364 ms
6,528 KB
testcase_16 AC 504 ms
6,144 KB
testcase_17 AC 518 ms
5,888 KB
testcase_18 AC 575 ms
6,528 KB
testcase_19 AC 50 ms
5,376 KB
testcase_20 AC 511 ms
6,656 KB
testcase_21 AC 152 ms
5,632 KB
testcase_22 AC 309 ms
7,168 KB
testcase_23 AC 592 ms
6,528 KB
testcase_24 AC 616 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var diff: []int :: #[n + 1]int
	for(1, m)
		var l: int :: cui@inputInt()
		var r: int :: cui@inputInt()
		do diff[n - l] :+ 1
		do diff[n - r + 1] :- 1
	end for
	
	var ans: int :: 0
	for i(0, n - 1)
		do ans :+ diff[i]
		do cui@print("\{ans}\n")
	end for
end func
0