結果

問題 No.2154 あさかつの参加人数
ユーザー viral8viral8
提出日時 2022-12-09 21:48:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 2,831 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-10-14 21:30:01
合計ジャッジ時間 20,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 620 ms
54,076 KB
testcase_01 AC 630 ms
53,612 KB
testcase_02 AC 631 ms
54,396 KB
testcase_03 AC 618 ms
53,972 KB
testcase_04 AC 622 ms
54,024 KB
testcase_05 AC 498 ms
46,044 KB
testcase_06 AC 588 ms
49,932 KB
testcase_07 AC 544 ms
50,012 KB
testcase_08 AC 544 ms
51,072 KB
testcase_09 AC 259 ms
46,624 KB
testcase_10 AC 535 ms
50,420 KB
testcase_11 AC 610 ms
52,940 KB
testcase_12 AC 582 ms
50,332 KB
testcase_13 AC 485 ms
46,396 KB
testcase_14 AC 566 ms
50,492 KB
testcase_15 AC 520 ms
50,392 KB
testcase_16 AC 574 ms
50,364 KB
testcase_17 AC 581 ms
50,052 KB
testcase_18 AC 604 ms
53,120 KB
testcase_19 AC 192 ms
43,580 KB
testcase_20 AC 575 ms
53,500 KB
testcase_21 AC 235 ms
46,160 KB
testcase_22 AC 304 ms
48,720 KB
testcase_23 AC 583 ms
52,532 KB
testcase_24 AC 603 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
class Main{
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] str = br.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int M = Integer.parseInt(str[1]);
		int[] sum = new int[N];
		while(M-->0){
			str = br.readLine().split(" ");
			int L = Integer.parseInt(str[0]);
			sum[N-L]++;
			int R = Integer.parseInt(str[1]);
			if(R>1)
				sum[N-R+1]--;
		}
		int now = 0;
		StringBuilder ans = new StringBuilder();
		for(int sub:sum){
			now += sub;
			ans.append(now);
			ans.append('\n');
		}
		System.out.print(ans.toString());
	}
}
0