QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#684027 | #6558. Allergen Testing | Thallium54 | WA | 25ms | 11136kb | Python3 | 459b | 2024-10-28 09:07:54 | 2024-10-28 09:07:54 |
Judging History
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'