結果

問題 No.836 じょうよ
ユーザー tentententen
提出日時 2022-09-13 16:55:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 1,567 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 43,292 KB
最終ジャッジ日時 2024-11-30 22:44:52
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,716 KB
testcase_01 AC 47 ms
36,536 KB
testcase_02 AC 47 ms
36,896 KB
testcase_03 AC 46 ms
36,972 KB
testcase_04 AC 45 ms
36,952 KB
testcase_05 AC 45 ms
36,752 KB
testcase_06 AC 45 ms
36,912 KB
testcase_07 AC 48 ms
36,656 KB
testcase_08 AC 46 ms
36,848 KB
testcase_09 AC 45 ms
36,752 KB
testcase_10 AC 45 ms
36,920 KB
testcase_11 AC 54 ms
37,304 KB
testcase_12 AC 63 ms
37,484 KB
testcase_13 AC 52 ms
36,824 KB
testcase_14 AC 48 ms
37,072 KB
testcase_15 AC 59 ms
37,444 KB
testcase_16 AC 135 ms
43,292 KB
testcase_17 AC 127 ms
42,736 KB
testcase_18 AC 62 ms
37,856 KB
testcase_19 AC 85 ms
38,900 KB
testcase_20 AC 107 ms
40,424 KB
testcase_21 AC 48 ms
37,072 KB
testcase_22 AC 84 ms
38,564 KB
testcase_23 AC 89 ms
39,404 KB
testcase_24 AC 51 ms
37,032 KB
testcase_25 AC 79 ms
38,392 KB
testcase_26 AC 49 ms
36,852 KB
testcase_27 AC 47 ms
37,060 KB
testcase_28 AC 51 ms
37,060 KB
testcase_29 AC 49 ms
37,092 KB
testcase_30 AC 46 ms
36,372 KB
testcase_31 AC 55 ms
36,992 KB
testcase_32 AC 54 ms
37,068 KB
testcase_33 AC 47 ms
36,628 KB
testcase_34 AC 52 ms
36,860 KB
testcase_35 AC 53 ms
37,184 KB
testcase_36 AC 86 ms
38,548 KB
testcase_37 AC 74 ms
38,400 KB
testcase_38 AC 76 ms
38,652 KB
testcase_39 AC 84 ms
38,628 KB
testcase_40 AC 96 ms
39,804 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