結果

問題 No.836 じょうよ
ユーザー tsunabittsunabit
提出日時 2019-07-15 04:06:11
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,071 bytes
コンパイル時間 2,918 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 127,276 KB
最終ジャッジ日時 2024-11-25 05:24:41
合計ジャッジ時間 22,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 113 ms
115,684 KB
testcase_02 AC 123 ms
60,552 KB
testcase_03 AC 128 ms
53,952 KB
testcase_04 AC 105 ms
52,676 KB
testcase_05 AC 124 ms
54,208 KB
testcase_06 AC 117 ms
54,124 KB
testcase_07 AC 120 ms
54,216 KB
testcase_08 AC 108 ms
52,844 KB
testcase_09 AC 115 ms
53,648 KB
testcase_10 AC 106 ms
52,708 KB
testcase_11 AC 225 ms
54,144 KB
testcase_12 AC 233 ms
55,256 KB
testcase_13 AC 220 ms
54,388 KB
testcase_14 AC 161 ms
54,332 KB
testcase_15 AC 234 ms
54,476 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 236 ms
54,392 KB
testcase_19 AC 563 ms
61,512 KB
testcase_20 TLE -
testcase_21 AC 186 ms
54,320 KB
testcase_22 AC 442 ms
64,112 KB
testcase_23 TLE -
testcase_24 AC 226 ms
53,956 KB
testcase_25 AC 655 ms
61,336 KB
testcase_26 AC 160 ms
53,896 KB
testcase_27 AC 177 ms
54,100 KB
testcase_28 AC 251 ms
55,512 KB
testcase_29 AC 195 ms
54,116 KB
testcase_30 AC 171 ms
53,352 KB
testcase_31 AC 407 ms
59,608 KB
testcase_32 AC 352 ms
59,220 KB
testcase_33 AC 181 ms
54,172 KB
testcase_34 AC 328 ms
59,292 KB
testcase_35 AC 356 ms
59,208 KB
testcase_36 AC 354 ms
62,840 KB
testcase_37 AC 344 ms
62,372 KB
testcase_38 AC 402 ms
63,964 KB
testcase_39 AC 387 ms
62,868 KB
testcase_40 AC 526 ms
127,276 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) {
//    				System.out.println(o + 1);
//    				continue;
    				f = true;
    			}
    		}
    		if(f) System.out.println(o + 1);
    		else System.out.println(o);
    	}
    	
//    	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