結果

問題 No.836 じょうよ
ユーザー tsunabittsunabit
提出日時 2019-07-15 03:33:54
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 3,101 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 64,720 KB
最終ジャッジ日時 2024-11-25 04:53:42
合計ジャッジ時間 15,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
64,004 KB
testcase_01 AC 135 ms
54,100 KB
testcase_02 AC 133 ms
53,800 KB
testcase_03 WA -
testcase_04 AC 132 ms
54,256 KB
testcase_05 AC 133 ms
54,036 KB
testcase_06 WA -
testcase_07 AC 130 ms
53,960 KB
testcase_08 AC 133 ms
53,824 KB
testcase_09 AC 129 ms
53,896 KB
testcase_10 AC 140 ms
53,996 KB
testcase_11 AC 230 ms
54,396 KB
testcase_12 AC 245 ms
54,908 KB
testcase_13 AC 230 ms
54,580 KB
testcase_14 AC 177 ms
54,172 KB
testcase_15 AC 230 ms
55,012 KB
testcase_16 AC 504 ms
62,960 KB
testcase_17 WA -
testcase_18 AC 235 ms
54,100 KB
testcase_19 WA -
testcase_20 AC 363 ms
58,808 KB
testcase_21 AC 193 ms
54,204 KB
testcase_22 AC 342 ms
62,200 KB
testcase_23 AC 507 ms
63,244 KB
testcase_24 AC 208 ms
54,300 KB
testcase_25 AC 308 ms
60,364 KB
testcase_26 AC 163 ms
54,028 KB
testcase_27 AC 186 ms
53,972 KB
testcase_28 AC 221 ms
55,356 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 401 ms
63,220 KB
testcase_37 AC 367 ms
62,528 KB
testcase_38 AC 436 ms
64,180 KB
testcase_39 AC 384 ms
62,796 KB
testcase_40 AC 513 ms
63,308 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