QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#464475#8165. Numerous Eliminationucup-team052#AC ✓1ms3736kbC++231.1kb2024-07-06 09:34:272024-07-06 09:34:27

Judging History

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

  • [2024-07-06 09:34:27]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3736kb
  • [2024-07-06 09:34:27]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define eb emplace_back
//mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
#define mod 998244353
#define ll long long
#define inf 0x3f3f3f3f
#define INF 0x3f3f3f3f3f3f3f3f
inline int read()
{
	char ch=getchar(); int nega=1; while(!isdigit(ch)) {if(ch=='-') nega=-1; ch=getchar();}
	int ans=0; while(isdigit(ch)) {ans=ans*10+ch-48;ch=getchar();}
	if(nega==-1) return -ans;
	return ans;
}
void print(vector<int> x){for(int i=0;i<(int)x.size();i++) printf("%d%c",x[i]," \n"[i==(int)x.size()-1]);}
inline int add(int x,int y) {return x+y>=mod?x+y-mod:x+y;}
inline int add(int x,int y,int z) {return add(add(x,y),z);}
inline int sub(int x,int y) {return x-y<0?x-y+mod:x-y;}
inline int mul(int x,int y) {return 1LL*x*y%mod;}
inline int mul(int x,int y,int z) {return mul(mul(x,y),z);}
#define inc(x,y) x=add(x,y)
#define dec(x,y) x=sub(x,y)
signed main()
{
	int n=read(),pw=1,ans=0;
	for(int i=1;i<=n;i++)
	{
		ans=add(ans,pw-1);
		pw=mul(pw,2);
	}
	cout<<ans<<endl;
	return 0;
}



詳細信息

Test #1:

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

input:

3

output:

4

result:

ok "4"

Test #2:

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

input:

5

output:

26

result:

ok "26"

Test #3:

score: 0
Accepted
time: 1ms
memory: 3652kb

input:

100000

output:

538161387

result:

ok "538161387"

Test #4:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

1

output:

0

result:

ok "0"

Test #5:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

5350

output:

998242641

result:

ok "998242641"

Test #6:

score: 0
Accepted
time: 1ms
memory: 3588kb

input:

62724

output:

998198137

result:

ok "998198137"

Test #7:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

2

output:

1

result:

ok "1"

Test #8:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

4

output:

11

result:

ok "11"

Test #9:

score: 0
Accepted
time: 1ms
memory: 3668kb

input:

96167

output:

998190723

result:

ok "998190723"

Test #10:

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

input:

99999

output:

269030694

result:

ok "269030694"

Test #11:

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

input:

80821

output:

998215590

result:

ok "998215590"

Test #12:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

691

output:

740311102

result:

ok "740311102"

Test #13:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

367

output:

675545966

result:

ok "675545966"

Test #14:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

692

output:

482378542

result:

ok "482378542"

Test #15:

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

input:

369

output:

705696260

result:

ok "705696260"

Test #16:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

35

output:

419430330

result:

ok "419430330"

Test #17:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

234

output:

490144146

result:

ok "490144146"

Test #18:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

327

output:

130396777

result:

ok "130396777"

Test #19:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

652

output:

117556084

result:

ok "117556084"

Test #20:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

7305

output:

11786609

result:

ok "11786609"

Test #21:

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

input:

9395

output:

870321930

result:

ok "870321930"

Test #22:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

9122

output:

996587272

result:

ok "996587272"

Test #23:

score: 0
Accepted
time: 0ms
memory: 3648kb

input:

8780

output:

966309924

result:

ok "966309924"

Test #24:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

7939

output:

523856979

result:

ok "523856979"

Test #25:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

1008

output:

954704138

result:

ok "954704138"

Test #26:

score: 0
Accepted
time: 0ms
memory: 3652kb

input:

8871

output:

829374169

result:

ok "829374169"

Test #27:

score: 0
Accepted
time: 0ms
memory: 3532kb

input:

8480

output:

372742505

result:

ok "372742505"

Test #28:

score: 0
Accepted
time: 1ms
memory: 3648kb

input:

70021

output:

202886229

result:

ok "202886229"

Test #29:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

41153

output:

880779931

result:

ok "880779931"

Test #30:

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

input:

86440

output:

835505974

result:

ok "835505974"

Test #31:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

19101

output:

37362176

result:

ok "37362176"

Test #32:

score: 0
Accepted
time: 1ms
memory: 3648kb

input:

55627

output:

833199493

result:

ok "833199493"

Test #33:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

30717

output:

121442010

result:

ok "121442010"

Test #34:

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

input:

10324

output:

968761253

result:

ok "968761253"

Test #35:

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

input:

32688

output:

63693036

result:

ok "63693036"

Extra Test:

score: 0
Extra Test Passed