結果

問題 No.836 じょうよ
ユーザー maspymaspy
提出日時 2020-01-16 13:13:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 575 ms / 1,000 ms
コード長 377 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 61,860 KB
最終ジャッジ日時 2024-06-23 16:05:23
合計ジャッジ時間 24,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
56,228 KB
testcase_01 AC 537 ms
44,564 KB
testcase_02 AC 531 ms
44,184 KB
testcase_03 AC 522 ms
44,432 KB
testcase_04 AC 516 ms
44,444 KB
testcase_05 AC 516 ms
44,052 KB
testcase_06 AC 523 ms
44,048 KB
testcase_07 AC 518 ms
44,048 KB
testcase_08 AC 514 ms
44,040 KB
testcase_09 AC 515 ms
44,428 KB
testcase_10 AC 521 ms
44,048 KB
testcase_11 AC 526 ms
44,304 KB
testcase_12 AC 517 ms
44,556 KB
testcase_13 AC 519 ms
44,428 KB
testcase_14 AC 512 ms
44,316 KB
testcase_15 AC 521 ms
44,052 KB
testcase_16 AC 570 ms
56,932 KB
testcase_17 AC 569 ms
55,408 KB
testcase_18 AC 514 ms
44,304 KB
testcase_19 AC 525 ms
45,064 KB
testcase_20 AC 543 ms
49,944 KB
testcase_21 AC 515 ms
44,560 KB
testcase_22 AC 534 ms
49,424 KB
testcase_23 AC 556 ms
56,740 KB
testcase_24 AC 507 ms
44,172 KB
testcase_25 AC 529 ms
46,996 KB
testcase_26 AC 514 ms
44,304 KB
testcase_27 AC 515 ms
44,168 KB
testcase_28 AC 523 ms
44,412 KB
testcase_29 AC 524 ms
44,308 KB
testcase_30 AC 519 ms
44,428 KB
testcase_31 AC 520 ms
44,160 KB
testcase_32 AC 525 ms
44,056 KB
testcase_33 AC 516 ms
44,052 KB
testcase_34 AC 511 ms
44,044 KB
testcase_35 AC 520 ms
44,436 KB
testcase_36 AC 539 ms
50,808 KB
testcase_37 AC 540 ms
50,316 KB
testcase_38 AC 553 ms
53,780 KB
testcase_39 AC 549 ms
52,040 KB
testcase_40 AC 575 ms
61,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

L, R, N = map(int,read().split())

def f(x):
    # 0,1,2,...,x-1
    q,r = divmod(x,N)
    counter = np.zeros(N, np.int64)
    counter += q
    counter[:r] += 1
    return counter

answer = f(R+1) - f(L)
print('\n'.join(answer.astype(str)))
0