結果

問題 No.836 じょうよ
ユーザー tsunabittsunabit
提出日時 2019-07-15 03:33:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 5,320 ms
コンパイル使用メモリ 83,316 KB
実行使用メモリ 65,052 KB
最終ジャッジ日時 2024-05-03 23:23:50
合計ジャッジ時間 16,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
63,056 KB
testcase_01 AC 136 ms
54,376 KB
testcase_02 AC 143 ms
53,948 KB
testcase_03 WA -
testcase_04 AC 135 ms
54,032 KB
testcase_05 AC 139 ms
53,944 KB
testcase_06 WA -
testcase_07 AC 132 ms
53,784 KB
testcase_08 AC 136 ms
54,080 KB
testcase_09 AC 132 ms
54,024 KB
testcase_10 AC 132 ms
53,808 KB
testcase_11 AC 240 ms
54,472 KB
testcase_12 AC 258 ms
55,492 KB
testcase_13 AC 237 ms
54,612 KB
testcase_14 AC 171 ms
54,416 KB
testcase_15 AC 251 ms
54,936 KB
testcase_16 AC 526 ms
63,040 KB
testcase_17 WA -
testcase_18 AC 219 ms
54,312 KB
testcase_19 WA -
testcase_20 AC 396 ms
61,128 KB
testcase_21 AC 195 ms
54,456 KB
testcase_22 AC 363 ms
62,272 KB
testcase_23 AC 523 ms
64,212 KB
testcase_24 AC 213 ms
54,776 KB
testcase_25 AC 327 ms
60,744 KB
testcase_26 AC 180 ms
54,256 KB
testcase_27 AC 194 ms
54,448 KB
testcase_28 AC 239 ms
55,464 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 395 ms
62,628 KB
testcase_37 AC 388 ms
62,604 KB
testcase_38 AC 450 ms
63,352 KB
testcase_39 AC 418 ms
62,624 KB
testcase_40 AC 544 ms
61,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No836 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long l = sc.nextLong(), r = sc.nextLong(), n = sc.nextLong();
    	long o = (r - l + 1) / n;
    	if((r - l + 1) % n == 0) {
    		for(int i = 0; i < n; i++) {
        		System.out.println(o);
        	}
    	}else {
    		for(int i = 0; i < n; i++) {
        		if(l % n <= i && i <= r % n) System.out.println(o + 1);
        		else System.out.println(o);
        	}
    	}
    }
}
0