結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 494 ms
49,692 KB
testcase_01 AC 137 ms
41,180 KB
testcase_02 AC 137 ms
41,136 KB
testcase_03 AC 134 ms
41,148 KB
testcase_04 AC 134 ms
41,180 KB
testcase_05 AC 141 ms
41,052 KB
testcase_06 AC 135 ms
41,140 KB
testcase_07 AC 117 ms
39,676 KB
testcase_08 AC 134 ms
41,196 KB
testcase_09 AC 131 ms
40,948 KB
testcase_10 AC 133 ms
41,008 KB
testcase_11 AC 239 ms
42,636 KB
testcase_12 AC 259 ms
43,672 KB
testcase_13 AC 240 ms
42,032 KB
testcase_14 AC 181 ms
41,328 KB
testcase_15 AC 248 ms
42,784 KB
testcase_16 AC 512 ms
51,896 KB
testcase_17 AC 480 ms
51,408 KB
testcase_18 AC 227 ms
42,044 KB
testcase_19 AC 270 ms
44,084 KB
testcase_20 AC 391 ms
49,744 KB
testcase_21 AC 195 ms
41,624 KB
testcase_22 AC 358 ms
51,024 KB
testcase_23 AC 506 ms
52,972 KB
testcase_24 AC 213 ms
42,052 KB
testcase_25 AC 320 ms
48,684 KB
testcase_26 AC 167 ms
40,036 KB
testcase_27 AC 179 ms
41,700 KB
testcase_28 AC 240 ms
43,152 KB
testcase_29 AC 212 ms
42,108 KB
testcase_30 AC 193 ms
41,624 KB
testcase_31 AC 251 ms
43,556 KB
testcase_32 AC 249 ms
43,332 KB
testcase_33 AC 189 ms
41,548 KB
testcase_34 AC 234 ms
43,000 KB
testcase_35 AC 244 ms
43,296 KB
testcase_36 AC 396 ms
51,048 KB
testcase_37 AC 398 ms
51,416 KB
testcase_38 AC 459 ms
51,468 KB
testcase_39 AC 431 ms
51,616 KB
testcase_40 AC 547 ms
52,212 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{
        Scanner sc = new Scanner(System.in);
        long l = sc.nextLong();
        long r = sc.nextLong();
        int n = sc.nextInt();
        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