結果

問題 No.836 じょうよ
ユーザー htensaihtensai
提出日時 2019-11-11 17:17:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 1,000 ms
コード長 676 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 46,068 KB
最終ジャッジ日時 2024-09-15 05:17:29
合計ジャッジ時間 10,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
45,824 KB
testcase_01 AC 130 ms
40,996 KB
testcase_02 AC 134 ms
41,268 KB
testcase_03 AC 135 ms
41,112 KB
testcase_04 AC 131 ms
41,404 KB
testcase_05 AC 136 ms
41,324 KB
testcase_06 AC 131 ms
41,172 KB
testcase_07 AC 131 ms
41,104 KB
testcase_08 AC 134 ms
41,064 KB
testcase_09 AC 131 ms
41,564 KB
testcase_10 AC 131 ms
40,988 KB
testcase_11 AC 157 ms
41,840 KB
testcase_12 AC 166 ms
41,764 KB
testcase_13 AC 155 ms
41,524 KB
testcase_14 AC 133 ms
41,204 KB
testcase_15 AC 158 ms
41,400 KB
testcase_16 AC 235 ms
46,068 KB
testcase_17 AC 218 ms
45,676 KB
testcase_18 AC 166 ms
41,984 KB
testcase_19 AC 167 ms
42,260 KB
testcase_20 AC 195 ms
43,812 KB
testcase_21 AC 131 ms
41,472 KB
testcase_22 AC 138 ms
41,160 KB
testcase_23 AC 180 ms
43,016 KB
testcase_24 AC 141 ms
41,352 KB
testcase_25 AC 159 ms
41,636 KB
testcase_26 AC 131 ms
41,308 KB
testcase_27 AC 123 ms
40,168 KB
testcase_28 AC 149 ms
41,600 KB
testcase_29 AC 133 ms
41,172 KB
testcase_30 AC 131 ms
41,432 KB
testcase_31 AC 129 ms
40,424 KB
testcase_32 AC 152 ms
41,604 KB
testcase_33 AC 131 ms
41,456 KB
testcase_34 AC 150 ms
41,572 KB
testcase_35 AC 149 ms
41,356 KB
testcase_36 AC 153 ms
42,392 KB
testcase_37 AC 156 ms
42,616 KB
testcase_38 AC 174 ms
42,732 KB
testcase_39 AC 178 ms
42,476 KB
testcase_40 AC 186 ms
43,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static TreeSet<Integer> primes;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long l = sc.nextLong();
		long r = sc.nextLong();
		int n = sc.nextInt();
		long[] arrL = new long[n];
		Arrays.fill(arrL, (l - 1) / n);
		long modL = (l - 1) % n;
		for (int i = 1; i <= modL; i++) {
		    arrL[i]++;
		}
		long[] arrR = new long[n];
		Arrays.fill(arrR, r / n);
		long modR = r % n;
		for (int i = 1; i <= modR; i++) {
		    arrR[i]++;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    sb.append(arrR[i] - arrL[i]).append("\n");
		}
	    System.out.print(sb);
	}
}
0