結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
56,124 KB
testcase_01 AC 526 ms
44,428 KB
testcase_02 AC 502 ms
44,312 KB
testcase_03 AC 482 ms
44,172 KB
testcase_04 AC 481 ms
44,056 KB
testcase_05 AC 490 ms
43,932 KB
testcase_06 AC 487 ms
44,044 KB
testcase_07 AC 498 ms
44,436 KB
testcase_08 AC 497 ms
44,180 KB
testcase_09 AC 493 ms
43,796 KB
testcase_10 AC 493 ms
44,044 KB
testcase_11 AC 497 ms
44,436 KB
testcase_12 AC 500 ms
44,564 KB
testcase_13 AC 494 ms
43,932 KB
testcase_14 AC 490 ms
44,432 KB
testcase_15 AC 484 ms
44,180 KB
testcase_16 AC 548 ms
56,772 KB
testcase_17 AC 532 ms
55,432 KB
testcase_18 AC 488 ms
44,172 KB
testcase_19 AC 495 ms
44,944 KB
testcase_20 AC 510 ms
50,068 KB
testcase_21 AC 481 ms
44,056 KB
testcase_22 AC 503 ms
49,044 KB
testcase_23 AC 536 ms
56,512 KB
testcase_24 AC 505 ms
44,308 KB
testcase_25 AC 501 ms
46,856 KB
testcase_26 AC 480 ms
44,056 KB
testcase_27 AC 486 ms
43,920 KB
testcase_28 AC 491 ms
44,184 KB
testcase_29 AC 485 ms
44,304 KB
testcase_30 AC 490 ms
44,432 KB
testcase_31 AC 490 ms
43,920 KB
testcase_32 AC 490 ms
44,436 KB
testcase_33 AC 476 ms
44,172 KB
testcase_34 AC 494 ms
43,924 KB
testcase_35 AC 497 ms
44,052 KB
testcase_36 AC 521 ms
50,444 KB
testcase_37 AC 516 ms
50,332 KB
testcase_38 AC 518 ms
53,648 KB
testcase_39 AC 521 ms
51,608 KB
testcase_40 AC 544 ms
61,948 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