結果

問題 No.836 じょうよ
ユーザー tentententen
提出日時 2024-07-04 18:27:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 1,697 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 88,672 KB
実行使用メモリ 49,700 KB
最終ジャッジ日時 2024-07-04 18:28:07
合計ジャッジ時間 8,028 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
47,532 KB
testcase_01 AC 67 ms
37,728 KB
testcase_02 AC 65 ms
37,668 KB
testcase_03 AC 62 ms
37,708 KB
testcase_04 AC 60 ms
37,740 KB
testcase_05 AC 58 ms
37,552 KB
testcase_06 AC 62 ms
37,872 KB
testcase_07 AC 63 ms
37,932 KB
testcase_08 AC 63 ms
37,828 KB
testcase_09 AC 64 ms
37,956 KB
testcase_10 AC 64 ms
37,968 KB
testcase_11 AC 88 ms
39,476 KB
testcase_12 AC 94 ms
39,812 KB
testcase_13 AC 93 ms
39,204 KB
testcase_14 AC 63 ms
38,092 KB
testcase_15 AC 101 ms
39,712 KB
testcase_16 AC 179 ms
49,676 KB
testcase_17 AC 161 ms
47,776 KB
testcase_18 AC 90 ms
39,424 KB
testcase_19 AC 98 ms
40,348 KB
testcase_20 AC 141 ms
46,840 KB
testcase_21 AC 69 ms
38,220 KB
testcase_22 AC 106 ms
41,948 KB
testcase_23 AC 131 ms
46,812 KB
testcase_24 AC 67 ms
38,504 KB
testcase_25 AC 95 ms
40,772 KB
testcase_26 AC 77 ms
37,936 KB
testcase_27 AC 68 ms
38,144 KB
testcase_28 AC 75 ms
38,900 KB
testcase_29 AC 70 ms
38,148 KB
testcase_30 AC 69 ms
37,948 KB
testcase_31 AC 91 ms
39,468 KB
testcase_32 AC 93 ms
39,168 KB
testcase_33 AC 67 ms
37,856 KB
testcase_34 AC 85 ms
39,368 KB
testcase_35 AC 83 ms
39,176 KB
testcase_36 AC 108 ms
42,832 KB
testcase_37 AC 103 ms
42,636 KB
testcase_38 AC 117 ms
46,400 KB
testcase_39 AC 109 ms
46,672 KB
testcase_40 AC 147 ms
49,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

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[] base = getArray(n, right);
        long[] minus = getArray(n, left - 1);
        for (int i = 0; i < n; i++) {
            base[i] -= minus[i];
        }
        System.out.println(Arrays.stream(base).mapToObj(String::valueOf).collect(Collectors.joining("\n")));
    }
    
    static long[] getArray(int size, long value) {
        long[] ans = new long[size];
        Arrays.fill(ans, value / size);
        for (int i = 0; i <= value % size; i++) {
            ans[i]++;
        }
        return ans;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0