QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#684027#6558. Allergen TestingThallium54WA 25ms11136kbPython3459b2024-10-28 09:07:542024-10-28 09:07:54

Judging History

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

  • [2024-10-28 09:07:54]
  • 评测
  • 测评结果:WA
  • 用时:25ms
  • 内存:11136kb
  • [2024-10-28 09:07:54]
  • 提交

answer

import math

def testing(num_of_compounds, num_of_days):
    base = num_of_days + 1
    return math.ceil(math.log(num_of_compounds, base))

def main():
    num_of_cases = int(input())
    output = []
    for i in range(num_of_cases):
        num_of_compounds, num_of_days = map(int, input().split())
        num_of_sites = testing(num_of_compounds, num_of_days)
        output.append(num_of_sites)
    for i in output:
        print(i)

main()

详细

Test #1:

score: 100
Accepted
time: 12ms
memory: 10772kb

input:

1
4 1

output:

2

result:

ok single line: '2'

Test #2:

score: -100
Wrong Answer
time: 25ms
memory: 11136kb

input:

10000
1 1
1000000000000000000 1
1 1000000000000000000
1000000000000000000 1000000000000000000
26615519354743225 163142634
26615519354743225 163142634
26615519354743224 163142634
26615519354743226 163142634
847997831064072529 920867976
847997831064072529 920867976
847997831064072528 920867976
8479978...

output:

0
60
0
1
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
4
4
4
4
3
3
3
3
3
3
3
3
4
4
4
4
4
4
4
4
4
4
4
4
3
3
3
3
4
4
4
4
4
4
4
4
3
3
3
3
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
4
5
4
4
4
4
5
5
5
5
5
5
5
5
6
6
6
6
5
5
5
5
5
5
5
5
5
5
5
5
6
6...

result:

wrong answer 8th lines differ - expected: '3', found: '2'