結果

問題 No.836 じょうよ
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 15:52:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 580 ms / 1,000 ms
コード長 448 bytes
コンパイル時間 3,731 ms
コンパイル使用メモリ 83,584 KB
実行使用メモリ 63,292 KB
最終ジャッジ日時 2024-11-21 11:34:16
合計ジャッジ時間 16,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
61,492 KB
testcase_01 AC 141 ms
54,052 KB
testcase_02 AC 141 ms
53,992 KB
testcase_03 AC 134 ms
53,960 KB
testcase_04 AC 136 ms
53,920 KB
testcase_05 AC 133 ms
53,940 KB
testcase_06 AC 122 ms
52,852 KB
testcase_07 AC 135 ms
54,068 KB
testcase_08 AC 139 ms
53,772 KB
testcase_09 AC 137 ms
54,040 KB
testcase_10 AC 137 ms
54,348 KB
testcase_11 AC 250 ms
54,844 KB
testcase_12 AC 258 ms
55,480 KB
testcase_13 AC 241 ms
54,668 KB
testcase_14 AC 187 ms
54,576 KB
testcase_15 AC 253 ms
55,328 KB
testcase_16 AC 522 ms
62,940 KB
testcase_17 AC 513 ms
62,748 KB
testcase_18 AC 241 ms
54,728 KB
testcase_19 AC 291 ms
57,788 KB
testcase_20 AC 402 ms
61,888 KB
testcase_21 AC 189 ms
54,372 KB
testcase_22 AC 367 ms
62,536 KB
testcase_23 AC 506 ms
62,968 KB
testcase_24 AC 210 ms
54,720 KB
testcase_25 AC 330 ms
61,036 KB
testcase_26 AC 182 ms
54,512 KB
testcase_27 AC 188 ms
54,448 KB
testcase_28 AC 242 ms
55,520 KB
testcase_29 AC 201 ms
54,428 KB
testcase_30 AC 191 ms
54,368 KB
testcase_31 AC 238 ms
55,392 KB
testcase_32 AC 251 ms
55,440 KB
testcase_33 AC 190 ms
54,380 KB
testcase_34 AC 239 ms
55,520 KB
testcase_35 AC 241 ms
55,400 KB
testcase_36 AC 401 ms
62,784 KB
testcase_37 AC 397 ms
62,328 KB
testcase_38 AC 460 ms
63,292 KB
testcase_39 AC 420 ms
63,160 KB
testcase_40 AC 580 ms
63,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1half;
import java.util.Scanner;
public class Con836 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long l = s.nextLong() , r = s.nextLong() , n = s.nextLong();
		s.close();

		long k = (r - l) / n , k2 = (r - l) % n , t = l % n;
		for(int i = 0;i < n;i++){
			if(i <= t + k2 - n || (i >= t && i <= t + k2)){
				System.out.println(k + 1);
			}else{
				System.out.println(k);
			}
		}
	}

}
0