結果

問題 No.836 じょうよ
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-07 21:23:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 537 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-06-27 05:03:43
合計ジャッジ時間 15,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
53,576 KB
testcase_01 AC 133 ms
41,272 KB
testcase_02 AC 130 ms
41,504 KB
testcase_03 AC 126 ms
41,368 KB
testcase_04 AC 126 ms
41,304 KB
testcase_05 AC 132 ms
41,184 KB
testcase_06 AC 124 ms
41,300 KB
testcase_07 AC 128 ms
41,240 KB
testcase_08 AC 119 ms
41,108 KB
testcase_09 AC 124 ms
41,480 KB
testcase_10 AC 124 ms
41,572 KB
testcase_11 AC 224 ms
42,912 KB
testcase_12 AC 287 ms
43,548 KB
testcase_13 AC 270 ms
42,596 KB
testcase_14 AC 210 ms
41,880 KB
testcase_15 AC 277 ms
43,216 KB
testcase_16 AC 517 ms
53,504 KB
testcase_17 AC 450 ms
52,956 KB
testcase_18 AC 203 ms
42,152 KB
testcase_19 AC 264 ms
44,056 KB
testcase_20 AC 372 ms
52,408 KB
testcase_21 AC 180 ms
41,716 KB
testcase_22 AC 347 ms
51,332 KB
testcase_23 AC 488 ms
52,316 KB
testcase_24 AC 197 ms
41,776 KB
testcase_25 AC 317 ms
49,636 KB
testcase_26 AC 170 ms
41,640 KB
testcase_27 AC 175 ms
41,872 KB
testcase_28 AC 233 ms
43,216 KB
testcase_29 AC 206 ms
42,008 KB
testcase_30 AC 182 ms
41,592 KB
testcase_31 AC 230 ms
43,636 KB
testcase_32 AC 240 ms
43,532 KB
testcase_33 AC 185 ms
41,964 KB
testcase_34 AC 232 ms
43,396 KB
testcase_35 AC 222 ms
43,556 KB
testcase_36 AC 381 ms
51,960 KB
testcase_37 AC 371 ms
51,572 KB
testcase_38 AC 434 ms
52,136 KB
testcase_39 AC 405 ms
51,848 KB
testcase_40 AC 537 ms
52,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long l = sc.nextLong();
    long r = sc.nextLong();
    long n = sc.nextLong();
    long t1 = l % n;
    long t2 = r % n;
    long k = (r + n - 1 - t2 - l + t1 + 1) / n;
    for(int i = 0; i < n; i++) {
      long ans = k;
      if(i < t1) ans--;
      if(i > t2) ans--;
      System.out.println(ans);
    }
  }
}
0