結果

問題 No.836 じょうよ
ユーザー GrenacheGrenache
提出日時 2019-06-29 11:50:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 256 ms / 1,000 ms
コード長 795 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 46,764 KB
最終ジャッジ日時 2024-07-02 05:29:49
合計ジャッジ時間 12,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
45,644 KB
testcase_01 AC 131 ms
41,076 KB
testcase_02 AC 133 ms
41,596 KB
testcase_03 AC 133 ms
41,196 KB
testcase_04 AC 130 ms
41,288 KB
testcase_05 AC 132 ms
41,256 KB
testcase_06 AC 131 ms
41,012 KB
testcase_07 AC 120 ms
40,084 KB
testcase_08 AC 134 ms
41,548 KB
testcase_09 AC 132 ms
41,680 KB
testcase_10 AC 117 ms
40,408 KB
testcase_11 AC 178 ms
42,036 KB
testcase_12 AC 185 ms
41,880 KB
testcase_13 AC 178 ms
41,804 KB
testcase_14 AC 149 ms
41,564 KB
testcase_15 AC 176 ms
41,728 KB
testcase_16 AC 256 ms
45,432 KB
testcase_17 AC 249 ms
45,308 KB
testcase_18 AC 181 ms
41,952 KB
testcase_19 AC 188 ms
41,984 KB
testcase_20 AC 219 ms
43,720 KB
testcase_21 AC 156 ms
41,764 KB
testcase_22 AC 195 ms
43,068 KB
testcase_23 AC 235 ms
45,344 KB
testcase_24 AC 175 ms
41,728 KB
testcase_25 AC 188 ms
42,680 KB
testcase_26 AC 154 ms
41,452 KB
testcase_27 AC 156 ms
41,288 KB
testcase_28 AC 176 ms
41,888 KB
testcase_29 AC 150 ms
41,504 KB
testcase_30 AC 155 ms
41,496 KB
testcase_31 AC 183 ms
42,248 KB
testcase_32 AC 169 ms
42,092 KB
testcase_33 AC 146 ms
41,700 KB
testcase_34 AC 173 ms
41,740 KB
testcase_35 AC 178 ms
42,092 KB
testcase_36 AC 203 ms
44,008 KB
testcase_37 AC 205 ms
43,740 KB
testcase_38 AC 224 ms
46,764 KB
testcase_39 AC 204 ms
44,060 KB
testcase_40 AC 244 ms
46,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder836 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long l = sc.nextLong();
		long r = sc.nextLong();
		int n = sc.nextInt();

		for (int i = 0; i < n; i++) {
			pr.println(f(r, n, i) - f(l - 1, n, i));
		}
	}

	private static long f(long l, int n, int i) {
		long ret = l / n;

		if (i == 0) {
			return ret;
		} else {
			return ret + (l % n >= i ? 1 : 0);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0