結果

問題 No.836 じょうよ
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2020-01-01 23:01:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,080 KB
最終ジャッジ日時 2024-11-22 17:17:54
合計ジャッジ時間 23,416 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
17,572 KB
testcase_02 AC 30 ms
24,064 KB
testcase_03 AC 29 ms
17,568 KB
testcase_04 AC 29 ms
17,832 KB
testcase_05 AC 29 ms
17,572 KB
testcase_06 AC 29 ms
23,040 KB
testcase_07 AC 30 ms
17,576 KB
testcase_08 AC 30 ms
16,000 KB
testcase_09 AC 30 ms
16,128 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 97 ms
11,008 KB
testcase_12 AC 74 ms
11,008 KB
testcase_13 AC 137 ms
10,880 KB
testcase_14 AC 45 ms
10,624 KB
testcase_15 AC 135 ms
10,880 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 281 ms
10,880 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 63 ms
10,880 KB
testcase_22 AC 779 ms
10,880 KB
testcase_23 TLE -
testcase_24 AC 282 ms
11,008 KB
testcase_25 TLE -
testcase_26 AC 33 ms
10,752 KB
testcase_27 AC 45 ms
10,752 KB
testcase_28 AC 290 ms
10,880 KB
testcase_29 AC 111 ms
11,008 KB
testcase_30 AC 63 ms
10,752 KB
testcase_31 AC 779 ms
11,264 KB
testcase_32 AC 612 ms
11,136 KB
testcase_33 AC 64 ms
10,752 KB
testcase_34 AC 497 ms
11,264 KB
testcase_35 AC 612 ms
11,136 KB
testcase_36 AC 73 ms
10,880 KB
testcase_37 AC 69 ms
10,880 KB
testcase_38 AC 90 ms
10,880 KB
testcase_39 AC 80 ms
10,880 KB
testcase_40 AC 127 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input_list = list(map(int,input().split()))
l, r, n = input_list

num_range = r - l + 1
rest_list = []

if num_range >= n:
    for v in range(l, l + n):
        rest_list.append(v % n)        
else:
    for v in range(l, r + 1):
        rest_list.append(v % n)

# print('rest_list: {}'.format(rest_list))
minimum = num_range // n
# print('minimum: {}'.format(minimum))
rest = num_range % n
for i in range(n):
    if i in rest_list[0 : rest]:
        print(minimum + 1)
    else:
        print(minimum)
0