結果

問題 No.645 Count Permutation
ユーザー maspymaspy
提出日時 2020-05-01 18:25:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-12-24 13:30:17
合計ジャッジ時間 27,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
44,072 KB
testcase_01 WA -
testcase_02 AC 495 ms
44,076 KB
testcase_03 AC 516 ms
44,068 KB
testcase_04 WA -
testcase_05 AC 484 ms
44,460 KB
testcase_06 AC 480 ms
43,940 KB
testcase_07 AC 481 ms
43,936 KB
testcase_08 WA -
testcase_09 AC 488 ms
44,192 KB
testcase_10 AC 485 ms
44,204 KB
testcase_11 AC 536 ms
43,940 KB
testcase_12 AC 535 ms
44,144 KB
testcase_13 AC 533 ms
44,584 KB
testcase_14 AC 491 ms
43,940 KB
testcase_15 WA -
testcase_16 AC 676 ms
43,956 KB
testcase_17 AC 984 ms
44,200 KB
testcase_18 AC 643 ms
44,328 KB
testcase_19 AC 994 ms
44,320 KB
testcase_20 AC 1,080 ms
44,200 KB
testcase_21 WA -
testcase_22 AC 600 ms
44,072 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 756 ms
44,200 KB
testcase_26 AC 902 ms
44,240 KB
testcase_27 AC 722 ms
44,336 KB
testcase_28 AC 626 ms
44,068 KB
testcase_29 AC 869 ms
44,196 KB
testcase_30 AC 893 ms
44,204 KB
testcase_31 AC 901 ms
44,328 KB
testcase_32 AC 595 ms
44,072 KB
testcase_33 AC 620 ms
43,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

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

MOD = 10**9 + 7

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

dp = np.zeros(60, np.int64)
dp[0] = 1
for n in range(N-1):
    newdp = dp * n
    newdp[1:] += dp[:-1]
    dp = newdp % MOD

answer = 0
for i in range(60):
    if L <= (1<<i)<= R:
        answer += dp[i]
answer %= MOD

print(answer)
0