結果

問題 No.836 じょうよ
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 15:50:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-11-21 11:31:31
合計ジャッジ時間 16,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
63,520 KB
testcase_01 AC 139 ms
53,960 KB
testcase_02 AC 141 ms
54,180 KB
testcase_03 WA -
testcase_04 AC 137 ms
54,080 KB
testcase_05 AC 141 ms
54,248 KB
testcase_06 WA -
testcase_07 AC 136 ms
54,088 KB
testcase_08 WA -
testcase_09 AC 133 ms
53,968 KB
testcase_10 AC 137 ms
53,852 KB
testcase_11 AC 240 ms
54,744 KB
testcase_12 AC 260 ms
55,576 KB
testcase_13 AC 242 ms
54,540 KB
testcase_14 AC 184 ms
54,296 KB
testcase_15 AC 249 ms
54,736 KB
testcase_16 AC 513 ms
64,896 KB
testcase_17 WA -
testcase_18 AC 241 ms
54,756 KB
testcase_19 WA -
testcase_20 AC 387 ms
62,248 KB
testcase_21 AC 198 ms
54,184 KB
testcase_22 AC 361 ms
60,308 KB
testcase_23 AC 476 ms
62,772 KB
testcase_24 AC 213 ms
54,476 KB
testcase_25 AC 324 ms
58,072 KB
testcase_26 AC 176 ms
54,420 KB
testcase_27 AC 190 ms
54,256 KB
testcase_28 AC 243 ms
55,540 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 399 ms
61,984 KB
testcase_37 AC 376 ms
60,108 KB
testcase_38 AC 446 ms
63,028 KB
testcase_39 AC 419 ms
59,420 KB
testcase_40 AC 586 ms
63,332 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 - 1l - n || (i >= t && i <= t + k2)){
				System.out.println(k + 1);
			}else{
				System.out.println(k);
			}
		}
	}

}
0