結果

問題 No.836 じょうよ
ユーザー ks2mks2m
提出日時 2019-06-14 22:16:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 1,000 ms
コード長 655 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 57,884 KB
最終ジャッジ日時 2024-11-14 06:31:37
合計ジャッジ時間 10,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
57,112 KB
testcase_01 AC 125 ms
54,112 KB
testcase_02 AC 126 ms
54,100 KB
testcase_03 AC 129 ms
54,360 KB
testcase_04 AC 125 ms
54,112 KB
testcase_05 AC 129 ms
54,180 KB
testcase_06 AC 127 ms
53,968 KB
testcase_07 AC 127 ms
53,908 KB
testcase_08 AC 129 ms
54,028 KB
testcase_09 AC 126 ms
54,116 KB
testcase_10 AC 135 ms
53,812 KB
testcase_11 AC 159 ms
54,184 KB
testcase_12 AC 175 ms
54,396 KB
testcase_13 AC 165 ms
54,288 KB
testcase_14 AC 136 ms
54,136 KB
testcase_15 AC 163 ms
54,192 KB
testcase_16 AC 236 ms
56,792 KB
testcase_17 AC 223 ms
57,116 KB
testcase_18 AC 172 ms
54,160 KB
testcase_19 AC 176 ms
54,228 KB
testcase_20 AC 200 ms
56,468 KB
testcase_21 AC 132 ms
53,112 KB
testcase_22 AC 190 ms
56,724 KB
testcase_23 AC 208 ms
57,380 KB
testcase_24 AC 160 ms
54,112 KB
testcase_25 AC 185 ms
56,260 KB
testcase_26 AC 146 ms
54,144 KB
testcase_27 AC 149 ms
54,144 KB
testcase_28 AC 168 ms
54,284 KB
testcase_29 AC 163 ms
54,300 KB
testcase_30 AC 140 ms
54,360 KB
testcase_31 AC 168 ms
54,692 KB
testcase_32 AC 168 ms
54,756 KB
testcase_33 AC 150 ms
54,396 KB
testcase_34 AC 166 ms
54,552 KB
testcase_35 AC 170 ms
54,140 KB
testcase_36 AC 193 ms
56,552 KB
testcase_37 AC 212 ms
57,884 KB
testcase_38 AC 201 ms
56,736 KB
testcase_39 AC 194 ms
56,220 KB
testcase_40 AC 226 ms
57,316 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() + 1;
		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 (a < b) {
				if (i >= a) {
					ans++;
				}
				if (i >= b) {
					ans--;
				}
			}
			if (b < a) {
				if (i < b) {
					ans++;
				}
				if (a <= i) {
					ans++;
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0