結果

問題 No.836 じょうよ
ユーザー tentententen
提出日時 2022-09-13 16:55:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 1,567 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 54,740 KB
最終ジャッジ日時 2024-05-08 01:14:53
合計ジャッジ時間 7,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,276 KB
testcase_01 AC 54 ms
50,436 KB
testcase_02 AC 55 ms
50,096 KB
testcase_03 AC 54 ms
49,944 KB
testcase_04 AC 54 ms
50,356 KB
testcase_05 AC 54 ms
50,500 KB
testcase_06 AC 54 ms
49,908 KB
testcase_07 AC 54 ms
50,488 KB
testcase_08 AC 54 ms
50,440 KB
testcase_09 AC 55 ms
50,048 KB
testcase_10 AC 54 ms
50,300 KB
testcase_11 AC 66 ms
50,620 KB
testcase_12 AC 82 ms
51,036 KB
testcase_13 AC 66 ms
50,468 KB
testcase_14 AC 57 ms
50,148 KB
testcase_15 AC 69 ms
50,476 KB
testcase_16 AC 148 ms
54,740 KB
testcase_17 AC 142 ms
54,184 KB
testcase_18 AC 71 ms
50,848 KB
testcase_19 AC 94 ms
51,532 KB
testcase_20 AC 120 ms
53,960 KB
testcase_21 AC 57 ms
50,400 KB
testcase_22 AC 93 ms
51,408 KB
testcase_23 AC 99 ms
51,612 KB
testcase_24 AC 60 ms
50,256 KB
testcase_25 AC 87 ms
51,412 KB
testcase_26 AC 56 ms
50,348 KB
testcase_27 AC 57 ms
50,284 KB
testcase_28 AC 60 ms
49,968 KB
testcase_29 AC 57 ms
50,188 KB
testcase_30 AC 56 ms
50,376 KB
testcase_31 AC 63 ms
50,412 KB
testcase_32 AC 64 ms
50,244 KB
testcase_33 AC 56 ms
50,328 KB
testcase_34 AC 61 ms
50,452 KB
testcase_35 AC 61 ms
50,352 KB
testcase_36 AC 85 ms
51,536 KB
testcase_37 AC 86 ms
51,340 KB
testcase_38 AC 96 ms
51,572 KB
testcase_39 AC 84 ms
51,360 KB
testcase_40 AC 107 ms
51,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long left = sc.nextLong();
        long right = sc.nextLong();
        int n = sc.nextInt();
        long[] ans = new long[n];
        long div = right / n;
        long mod = right % n;
        for (int i = 0; i < n; i++) {
            ans[i] = div;
            if (i > mod) {
                ans[i]--;
            }
        }
        div = (left - 1) / n;
        mod = (left - 1) % n;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            ans[i] -= div;
            if (i > mod) {
                ans[i]++;
            }
            sb.append(ans[i]).append("\n");
        }
        System.out.print(sb);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0