QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#239705#6558. Allergen TestingpeddapWA 0ms3524kbC++14582b2023-11-04 22:34:062023-11-04 22:34:06

Judging History

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

  • [2023-11-04 22:34:06]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3524kb
  • [2023-11-04 22:34:06]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;


int myPow(int base, int pow) {
    int res = 1;
    for(int i=0; i<pow; i++) res *= base;
    return res;
}

int32_t main() {
    int t; cin >> t;
    while(t--) {
        int n, d; cin >> n >> d;

        if(n == 1) {
            cout << 0 << endl;
            return 0;
        }

        for(int i=0; i<60; i++) {
            int res = myPow(d+1, i);
            if(n/(d+1) <= res) {
                cout << (i+1) << endl;
                return 0;
            }
        }
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3524kb

input:

1
4 1

output:

2

result:

ok single line: '2'

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3524kb

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

result:

wrong answer 2nd lines differ - expected: '60', found: ''