結果

問題 No.836 じょうよ
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2020-01-01 23:19:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,072 KB
最終ジャッジ日時 2024-11-22 17:24:20
合計ジャッジ時間 22,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
17,572 KB
testcase_02 AC 29 ms
17,440 KB
testcase_03 AC 29 ms
24,192 KB
testcase_04 AC 29 ms
17,440 KB
testcase_05 AC 29 ms
17,444 KB
testcase_06 AC 29 ms
23,140 KB
testcase_07 AC 28 ms
17,568 KB
testcase_08 AC 29 ms
17,700 KB
testcase_09 AC 28 ms
17,572 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 95 ms
11,136 KB
testcase_12 AC 68 ms
11,008 KB
testcase_13 AC 137 ms
11,008 KB
testcase_14 AC 42 ms
10,624 KB
testcase_15 AC 131 ms
11,008 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 274 ms
10,880 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 59 ms
10,752 KB
testcase_22 AC 738 ms
11,136 KB
testcase_23 TLE -
testcase_24 AC 272 ms
11,136 KB
testcase_25 TLE -
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 41 ms
10,752 KB
testcase_28 AC 284 ms
11,008 KB
testcase_29 AC 107 ms
10,880 KB
testcase_30 AC 58 ms
10,752 KB
testcase_31 AC 726 ms
11,264 KB
testcase_32 AC 575 ms
11,136 KB
testcase_33 AC 60 ms
10,752 KB
testcase_34 AC 467 ms
11,136 KB
testcase_35 AC 560 ms
11,264 KB
testcase_36 AC 71 ms
11,136 KB
testcase_37 AC 69 ms
11,136 KB
testcase_38 AC 90 ms
11,392 KB
testcase_39 AC 74 ms
11,392 KB
testcase_40 AC 121 ms
18,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

num_range = r - l + 1
rest_list = [0] * n

if num_range >= n:
    i = 0
    for v in range(l, l + n):
        rest_list[i] = v % n
        i += 1
else:
    i = 0
    for v in range(l, r + 1):
        rest_list[i] = v % n
        i += 1

# 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