結果

問題 No.2154 あさかつの参加人数
ユーザー MichirakaraMichirakara
提出日時 2022-11-24 13:58:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 75,356 KB
最終ジャッジ日時 2024-10-01 11:41:26
合計ジャッジ時間 58,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,138 ms
57,976 KB
testcase_06 AC 1,913 ms
63,248 KB
testcase_07 AC 1,798 ms
64,368 KB
testcase_08 TLE -
testcase_09 AC 1,345 ms
62,604 KB
testcase_10 AC 1,796 ms
64,384 KB
testcase_11 TLE -
testcase_12 AC 1,818 ms
64,088 KB
testcase_13 AC 1,576 ms
60,024 KB
testcase_14 TLE -
testcase_15 AC 1,825 ms
75,356 KB
testcase_16 AC 1,967 ms
64,728 KB
testcase_17 AC 1,948 ms
63,620 KB
testcase_18 TLE -
testcase_19 AC 760 ms
53,208 KB
testcase_20 TLE -
testcase_21 AC 1,378 ms
61,452 KB
testcase_22 AC 1,841 ms
67,016 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int n=s.nextInt();
        int m=s.nextInt();
        ArrayList<Integer> imos=new ArrayList<Integer>(n+1);
        for(int i=0;i<n+1;i++)imos.add(0);
        for(int i=0;i<m;i++){
            int l=s.nextInt();
            int r=s.nextInt();
            imos.set(n-l,imos.get(n-l)+1);
            imos.set(n-r+1,imos.get(n-r+1)-1);
        }
        for(int i=0;i<n;i++){
            imos.set(i+1,imos.get(i+1)+imos.get(i));
            System.out.println(imos.get(i));
        }

    }
}
0