結果

問題 No.836 じょうよ
ユーザー ks2mks2m
提出日時 2019-06-14 22:01:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 3,209 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 57,436 KB
最終ジャッジ日時 2024-11-14 05:52:05
合計ジャッジ時間 11,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
57,372 KB
testcase_01 AC 135 ms
54,212 KB
testcase_02 AC 138 ms
54,076 KB
testcase_03 WA -
testcase_04 AC 132 ms
54,412 KB
testcase_05 AC 134 ms
54,224 KB
testcase_06 WA -
testcase_07 AC 134 ms
53,856 KB
testcase_08 WA -
testcase_09 AC 135 ms
53,916 KB
testcase_10 AC 135 ms
54,116 KB
testcase_11 AC 183 ms
54,272 KB
testcase_12 AC 169 ms
54,184 KB
testcase_13 AC 173 ms
54,608 KB
testcase_14 AC 154 ms
54,568 KB
testcase_15 AC 180 ms
54,656 KB
testcase_16 AC 239 ms
57,180 KB
testcase_17 WA -
testcase_18 AC 173 ms
54,480 KB
testcase_19 WA -
testcase_20 AC 212 ms
56,384 KB
testcase_21 AC 148 ms
54,272 KB
testcase_22 AC 206 ms
56,492 KB
testcase_23 AC 230 ms
57,232 KB
testcase_24 AC 165 ms
54,504 KB
testcase_25 AC 201 ms
56,420 KB
testcase_26 AC 150 ms
54,252 KB
testcase_27 AC 150 ms
54,336 KB
testcase_28 AC 176 ms
54,332 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 211 ms
56,572 KB
testcase_37 AC 206 ms
56,516 KB
testcase_38 AC 217 ms
56,612 KB
testcase_39 AC 207 ms
56,504 KB
testcase_40 AC 234 ms
57,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long l = sc.nextLong();
		long r = sc.nextLong();
		long n = sc.nextLong();
		sc.close();

		long a = l % n;
		long b = r % n;
		long c = (r - l) / n;
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			long ans = c;
			if (i >= a) {
				ans++;
			}
			if (i > b) {
				ans--;
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0