QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#380486#8565. Basic Bloomsucup-team1766#RE 0ms0kbPython3607b2024-04-07 04:46:052024-04-07 04:46:06

Judging History

你现在查看的是最新测评结果

  • [2024-04-07 04:46:06]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-04-07 04:46:05]
  • 提交

answer

from heapq import *
MOD = 998244353

flowers = [0] * 1000001

heap = []
for b in range(2,17):
    for d in range(1,b):
        heappush(heap, [d, b, d, d])
for i in range(1,len(flowers)):
    v,b,d,m = heappop(heap)
    if v != flowers[i-1]:
        flowers[i] = m % MOD
    heappush(heap, [v*b+d, b, d, (m*b+d)%MOD])
    if i % 100000 == 0:
        for i in range(len(heap)):
            heap[i][0] /= heap[0][0]

for i in range(1,len(flowers)):
    flowers[i] = (flowers[i] + flowers[i-1]) % MOD

t = int(input())

for _ in range(t):
    a, b = map(int,input().split())
    print(flowers[b]-flowers[a-1])

詳細信息

Test #1:

score: 0
Dangerous Syscalls

input:

3
1 2
1 10
15 2000

output:


result: