結果

問題 No.2154 あさかつの参加人数
ユーザー ID 21712ID 21712
提出日時 2024-11-18 05:00:14
言語 Go
(1.22.1)
結果
AC  
実行時間 1,244 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 11,579 ms
コンパイル使用メモリ 222,692 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-09 19:57:57
合計ジャッジ時間 38,282 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,234 ms
11,136 KB
testcase_01 AC 1,237 ms
11,136 KB
testcase_02 AC 1,235 ms
11,136 KB
testcase_03 AC 1,233 ms
11,008 KB
testcase_04 AC 1,244 ms
11,136 KB
testcase_05 AC 290 ms
6,144 KB
testcase_06 AC 745 ms
6,400 KB
testcase_07 AC 700 ms
7,808 KB
testcase_08 AC 760 ms
8,832 KB
testcase_09 AC 416 ms
6,016 KB
testcase_10 AC 632 ms
7,808 KB
testcase_11 AC 1,086 ms
9,984 KB
testcase_12 AC 776 ms
7,808 KB
testcase_13 AC 380 ms
6,144 KB
testcase_14 AC 798 ms
7,424 KB
testcase_15 AC 704 ms
8,832 KB
testcase_16 AC 849 ms
8,448 KB
testcase_17 AC 837 ms
7,424 KB
testcase_18 AC 989 ms
8,832 KB
testcase_19 AC 100 ms
5,248 KB
testcase_20 AC 891 ms
8,832 KB
testcase_21 AC 364 ms
5,888 KB
testcase_22 AC 745 ms
10,112 KB
testcase_23 AC 950 ms
8,960 KB
testcase_24 AC 1,101 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	t:=make([]int,n+1)
	for ;m>0;m-- {
		var l,r int
		Fscan(rd,&l,&r)
		t[r-1]--
		t[l]++
	}
	var s int
	for ;n>0;n-- {
		s+=t[n]
		Println(s)
	}
}
0