結果

問題 No.2154 あさかつの参加人数
ユーザー MichirakaraMichirakara
提出日時 2022-11-24 13:23:55
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 615 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-10-01 11:39:40
合計ジャッジ時間 55,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,049 ms
58,288 KB
testcase_06 AC 1,945 ms
62,912 KB
testcase_07 AC 1,861 ms
65,324 KB
testcase_08 TLE -
testcase_09 AC 1,398 ms
64,100 KB
testcase_10 AC 1,584 ms
65,348 KB
testcase_11 TLE -
testcase_12 AC 1,868 ms
66,224 KB
testcase_13 AC 1,433 ms
60,392 KB
testcase_14 AC 1,897 ms
64,276 KB
testcase_15 AC 1,605 ms
66,536 KB
testcase_16 AC 1,806 ms
65,832 KB
testcase_17 AC 1,906 ms
64,472 KB
testcase_18 TLE -
testcase_19 AC 712 ms
52,932 KB
testcase_20 TLE -
testcase_21 AC 1,208 ms
61,532 KB
testcase_22 AC 1,738 ms
67,192 KB
testcase_23 AC 1,973 ms
68,264 KB
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>();
        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