QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#243686#7026. Let the Flames Beginyiyiyi#AC ✓455ms3672kbC++14656b2023-11-08 15:51:292023-11-08 15:51:30

Judging History

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

  • [2023-11-08 15:51:30]
  • 评测
  • 测评结果:AC
  • 用时:455ms
  • 内存:3672kb
  • [2023-11-08 15:51:29]
  • 提交

answer

#include <bits/stdc++.h>
#define int __int128
#define ll long long
#define inf 0x3f3f3f3f
#define N 1020000
#define pii pair<int,int>
#define fi first
#define se second
using namespace std;
const int mo=998244353;
inline int read(){
	int x=0,w=0;char ch=getchar();
	while (!isdigit(ch))w|=ch=='-',ch=getchar();
	while (isdigit(ch))x=(x<<1)+(x<<3)+ch-'0',ch=getchar();
	return w?-x:x;
}

void solve(ll T){
	int n=read(),m=read(),k=read();
	int w=k*m;
	while (w>n){
		w=(w-n-1)/(k-1)+w-n;
	}
	ll ans=w;
	printf("Case #%lld: %lld\n",T,ans);
}
signed main(){
    int T=read();
    for (int _=1;_<=T;++_)solve(_);
    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3672kb

input:

20
10 1 2
10 2 2
10 3 2
10 4 2
10 5 2
10 6 2
10 7 2
10 8 2
10 9 2
10 10 2
10 1 3
10 2 3
10 3 3
10 4 3
10 5 3
10 6 3
10 7 3
10 8 3
10 9 3
10 10 3

output:

Case #1: 2
Case #2: 4
Case #3: 6
Case #4: 8
Case #5: 10
Case #6: 3
Case #7: 7
Case #8: 1
Case #9: 9
Case #10: 5
Case #11: 3
Case #12: 6
Case #13: 9
Case #14: 2
Case #15: 7
Case #16: 1
Case #17: 8
Case #18: 5
Case #19: 10
Case #20: 4

result:

ok 20 lines

Test #2:

score: 0
Accepted
time: 375ms
memory: 3584kb

input:

1000
999999999999992561 159 395327336264586619
442108849746740138 442108849746736034 460
999999999999992483 170 493046129512466597
999999999999994068 441 350960072694194744
999999999999995777 999999999999990118 67
999999999999991275 999999999999983373 331
999999999999990404 999999999999985608 429
99...

output:

Case #1: 857046466069738524
Case #2: 294578226925711387
Case #3: 817842017119952395
Case #4: 773392058140829462
Case #5: 522542636681279298
Case #6: 855114113325419851
Case #7: 21226015093289476
Case #8: 233100
Case #9: 641511906156530773
Case #10: 93961109024303404
Case #11: 230107545980257170
Case...

result:

ok 1000 lines

Test #3:

score: 0
Accepted
time: 455ms
memory: 3628kb

input:

1
999999999999999944 999999999999999890 2000000

output:

Case #1: 164945406307572169

result:

ok single line: 'Case #1: 164945406307572169'