結果

問題 No.836 じょうよ
ユーザー face4face4
提出日時 2019-06-12 20:52:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 1,000 ms
コード長 820 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 53,604 KB
最終ジャッジ日時 2024-10-11 20:05:13
合計ジャッジ時間 13,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 434 ms
50,996 KB
testcase_01 AC 56 ms
36,944 KB
testcase_02 AC 57 ms
36,768 KB
testcase_03 AC 53 ms
36,804 KB
testcase_04 AC 53 ms
36,740 KB
testcase_05 AC 56 ms
36,676 KB
testcase_06 AC 53 ms
36,816 KB
testcase_07 AC 53 ms
36,792 KB
testcase_08 AC 53 ms
36,668 KB
testcase_09 AC 54 ms
36,568 KB
testcase_10 AC 53 ms
36,544 KB
testcase_11 AC 165 ms
39,888 KB
testcase_12 AC 184 ms
40,528 KB
testcase_13 AC 167 ms
39,936 KB
testcase_14 AC 94 ms
38,012 KB
testcase_15 AC 173 ms
40,096 KB
testcase_16 AC 443 ms
51,492 KB
testcase_17 AC 469 ms
51,344 KB
testcase_18 AC 168 ms
39,584 KB
testcase_19 AC 215 ms
40,600 KB
testcase_20 AC 320 ms
47,452 KB
testcase_21 AC 114 ms
38,432 KB
testcase_22 AC 302 ms
51,128 KB
testcase_23 AC 462 ms
51,956 KB
testcase_24 AC 163 ms
39,536 KB
testcase_25 AC 273 ms
47,884 KB
testcase_26 AC 96 ms
37,860 KB
testcase_27 AC 119 ms
37,884 KB
testcase_28 AC 165 ms
39,972 KB
testcase_29 AC 129 ms
38,272 KB
testcase_30 AC 117 ms
38,272 KB
testcase_31 AC 178 ms
40,672 KB
testcase_32 AC 178 ms
40,304 KB
testcase_33 AC 104 ms
38,028 KB
testcase_34 AC 155 ms
39,956 KB
testcase_35 AC 171 ms
40,236 KB
testcase_36 AC 332 ms
49,644 KB
testcase_37 AC 340 ms
52,776 KB
testcase_38 AC 411 ms
52,616 KB
testcase_39 AC 377 ms
52,488 KB
testcase_40 AC 558 ms
53,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.BufferedReader;

import java.util.Scanner;

class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        long l, r;
        int n;
        String[] line = br.readLine().split(" ");
        l = Long.parseLong(line[0]);
        r = Long.parseLong(line[1]);
        n = Integer.parseInt(line[2]);
        int ans[] = new int[n];
    
        while(l % n != 0 && l <= r){
            ans[(int)(l%n)]++;
            l++;
        }

        long x = (r-l)/n;

        l += x * n;
        while(l <= r){
            ans[(int)(l%n)]++;
            l++;
        }
        
        for(int i = 0; i < n; i++)  System.out.println(ans[i] + x);
    }
}
0