結果

問題 No.836 じょうよ
ユーザー ks2mks2m
提出日時 2019-06-14 22:07:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 57,388 KB
最終ジャッジ日時 2024-11-14 06:07:25
合計ジャッジ時間 10,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
57,104 KB
testcase_01 AC 138 ms
53,968 KB
testcase_02 AC 134 ms
53,888 KB
testcase_03 AC 138 ms
53,940 KB
testcase_04 AC 135 ms
54,244 KB
testcase_05 AC 135 ms
53,848 KB
testcase_06 AC 133 ms
54,152 KB
testcase_07 WA -
testcase_08 AC 133 ms
53,852 KB
testcase_09 AC 135 ms
54,104 KB
testcase_10 WA -
testcase_11 AC 175 ms
53,848 KB
testcase_12 AC 171 ms
54,276 KB
testcase_13 AC 174 ms
54,356 KB
testcase_14 AC 154 ms
54,212 KB
testcase_15 AC 167 ms
54,088 KB
testcase_16 AC 255 ms
57,316 KB
testcase_17 AC 236 ms
57,164 KB
testcase_18 AC 178 ms
53,800 KB
testcase_19 AC 189 ms
54,592 KB
testcase_20 AC 216 ms
56,408 KB
testcase_21 AC 149 ms
54,384 KB
testcase_22 AC 198 ms
56,596 KB
testcase_23 AC 234 ms
57,144 KB
testcase_24 AC 174 ms
54,012 KB
testcase_25 AC 196 ms
56,688 KB
testcase_26 AC 155 ms
54,184 KB
testcase_27 AC 148 ms
54,264 KB
testcase_28 AC 172 ms
54,100 KB
testcase_29 AC 173 ms
54,344 KB
testcase_30 AC 152 ms
54,232 KB
testcase_31 AC 168 ms
54,248 KB
testcase_32 AC 178 ms
54,528 KB
testcase_33 AC 155 ms
54,060 KB
testcase_34 AC 177 ms
54,256 KB
testcase_35 AC 176 ms
54,228 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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 (a < b) {
				if (i >= a) {
					ans++;
				}
				if (i > b) {
					ans--;
				}
			}
			if (a > b) {
				if (i <= b) {
					ans++;
				}
				if (i >= a) {
					ans++;
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0