結果

問題 No.836 じょうよ
ユーザー tsunabittsunabit
提出日時 2019-07-15 04:11:40
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 711 bytes
コンパイル時間 3,675 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 64,084 KB
最終ジャッジ日時 2024-11-25 05:32:36
合計ジャッジ時間 18,981 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 794 ms
62,188 KB
testcase_01 AC 132 ms
54,432 KB
testcase_02 AC 136 ms
54,080 KB
testcase_03 AC 133 ms
54,280 KB
testcase_04 AC 132 ms
53,952 KB
testcase_05 AC 136 ms
53,932 KB
testcase_06 AC 127 ms
54,296 KB
testcase_07 AC 126 ms
54,080 KB
testcase_08 AC 128 ms
54,004 KB
testcase_09 AC 111 ms
52,488 KB
testcase_10 AC 130 ms
53,980 KB
testcase_11 AC 247 ms
54,556 KB
testcase_12 AC 252 ms
55,464 KB
testcase_13 AC 231 ms
54,524 KB
testcase_14 AC 172 ms
53,644 KB
testcase_15 AC 260 ms
55,472 KB
testcase_16 AC 833 ms
62,204 KB
testcase_17 TLE -
testcase_18 AC 253 ms
54,472 KB
testcase_19 AC 340 ms
58,072 KB
testcase_20 AC 690 ms
62,876 KB
testcase_21 AC 197 ms
53,888 KB
testcase_22 AC 356 ms
62,160 KB
testcase_23 AC 840 ms
62,148 KB
testcase_24 AC 223 ms
54,264 KB
testcase_25 AC 448 ms
59,372 KB
testcase_26 AC 174 ms
54,304 KB
testcase_27 AC 201 ms
54,504 KB
testcase_28 AC 252 ms
54,972 KB
testcase_29 AC 222 ms
54,360 KB
testcase_30 AC 202 ms
54,396 KB
testcase_31 AC 282 ms
55,612 KB
testcase_32 AC 266 ms
55,524 KB
testcase_33 AC 198 ms
54,404 KB
testcase_34 AC 254 ms
55,272 KB
testcase_35 AC 259 ms
55,376 KB
testcase_36 AC 362 ms
62,384 KB
testcase_37 AC 360 ms
62,584 KB
testcase_38 AC 418 ms
64,084 KB
testcase_39 AC 398 ms
63,060 KB
testcase_40 AC 553 ms
63,428 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;
    	
    	int hami = (int)((r - l + 1) % n);
    	long[] c = new long[hami];
    	for(int i = 0; i < hami; i++) {
    		c[i] = r % n - i;
    		if(c[i] < 0) c[i] += n;
    	}
    	
    	for(int i = 0; i < n; i++) {
    		boolean f = false;
    		for(int j = 0; j < hami; j++) {
    			if(c[j] == i) {
    				f = true;
    				break;
    			}
    		}
    		if(f) System.out.println(o + 1);
    		else System.out.println(o);
    	}
    	
    }
}
0