QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#570183#6558. Allergen TestingUESTC_DECAYALI#WA 53ms10720kbPython3173b2024-09-17 14:33:362024-09-17 14:33:41

Judging History

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

  • [2024-09-17 14:33:41]
  • 评测
  • 测评结果:WA
  • 用时:53ms
  • 内存:10720kb
  • [2024-09-17 14:33:36]
  • 提交

answer

for _ in range(int(input())):
    n, k = map(int, input().split())
    ans = 1
    k += 1
    i = k
    while i < n:
        ans += 1
        i *= k
    print(ans)

詳細信息

Test #1:

score: 100
Accepted
time: 10ms
memory: 10720kb

input:

1
4 1

output:

2

result:

ok single line: '2'

Test #2:

score: -100
Wrong Answer
time: 53ms
memory: 10708kb

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:

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

result:

wrong answer 1st lines differ - expected: '0', found: '1'