結果

問題 No.2154 あさかつの参加人数
ユーザー KowerKoint2010KowerKoint2010
提出日時 2022-11-24 23:34:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 615 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 80,652 KB
実行使用メモリ 82,436 KB
最終ジャッジ日時 2024-10-01 11:36:17
合計ジャッジ時間 58,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,096 ms
58,212 KB
testcase_06 AC 1,851 ms
63,940 KB
testcase_07 AC 1,827 ms
65,944 KB
testcase_08 TLE -
testcase_09 AC 1,364 ms
63,824 KB
testcase_10 AC 1,568 ms
65,168 KB
testcase_11 TLE -
testcase_12 AC 1,834 ms
64,796 KB
testcase_13 AC 1,399 ms
60,844 KB
testcase_14 AC 1,901 ms
64,592 KB
testcase_15 TLE -
testcase_16 AC 1,923 ms
66,360 KB
testcase_17 AC 1,894 ms
66,036 KB
testcase_18 TLE -
testcase_19 AC 694 ms
56,744 KB
testcase_20 TLE -
testcase_21 AC 1,204 ms
61,380 KB
testcase_22 AC 1,866 ms
68,380 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>();
        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