結果

問題 No.2154 あさかつの参加人数
ユーザー KowerKoint2010KowerKoint2010
提出日時 2022-11-24 23:40:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 939 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 69,984 KB
最終ジャッジ日時 2024-10-01 11:49:19
合計ジャッジ時間 26,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 910 ms
67,912 KB
testcase_01 AC 789 ms
68,008 KB
testcase_02 AC 939 ms
67,232 KB
testcase_03 AC 765 ms
67,708 KB
testcase_04 AC 795 ms
67,424 KB
testcase_05 AC 458 ms
57,768 KB
testcase_06 AC 814 ms
65,664 KB
testcase_07 AC 620 ms
66,460 KB
testcase_08 AC 625 ms
66,268 KB
testcase_09 AC 353 ms
65,876 KB
testcase_10 AC 757 ms
67,656 KB
testcase_11 AC 747 ms
66,792 KB
testcase_12 AC 782 ms
69,984 KB
testcase_13 AC 511 ms
61,424 KB
testcase_14 AC 668 ms
63,084 KB
testcase_15 AC 636 ms
66,392 KB
testcase_16 AC 821 ms
69,732 KB
testcase_17 AC 820 ms
64,116 KB
testcase_18 AC 713 ms
65,808 KB
testcase_19 AC 233 ms
56,160 KB
testcase_20 AC 677 ms
66,196 KB
testcase_21 AC 394 ms
60,976 KB
testcase_22 AC 475 ms
67,036 KB
testcase_23 AC 693 ms
65,324 KB
testcase_24 AC 753 ms
66,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] nm = br.readLine().split(" ");
        int n = Integer.parseInt(nm[0]);
        int m = Integer.parseInt(nm[1]);
        ArrayList<Integer> imos=new ArrayList<Integer>();
        for(int i=0;i<n+1;i++)imos.add(0);
        for(int i=0;i<m;i++){
            String[] lr = br.readLine().split(" ");
            int l = Integer.parseInt(lr[0]);
            int r = Integer.parseInt(lr[1]);
            imos.set(n-l,imos.get(n-l)+1);
            imos.set(n-r+1,imos.get(n-r+1)-1);
        }
        br.close();
        PrintWriter pr = new PrintWriter(System.out);
        for(int i=0;i<n;i++){
            imos.set(i+1,imos.get(i+1)+imos.get(i));
            pr.println(imos.get(i));
        }
        pr.flush();
        pr.close();
    }
}
0