QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#317112#8165. Numerous Elimination中国入民小学附属信息I队 (Zicheng Wang, Shubang Liu, Minkai Shao)#AC ✓0ms3732kbC++14776b2024-01-28 15:33:272024-01-28 15:33:27

Judging History

This is the latest submission verdict.

  • [2024-01-28 15:33:27]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3732kb
  • [2024-01-28 15:33:27]
  • Submitted

answer

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

char *p1, *p2, buf[1048577];
#define gc (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? EOF : *p1++)
template <typename T>
inline void Read(T &x)
{
	x = 0;
	char ch = gc;
	while (!isdigit(ch)) ch = gc;
	while (isdigit(ch)) x = (x << 3) + (x << 1) + (ch ^ 48), ch = gc;
}

typedef long long ll;
const int maxn = 5005;
const ll mod = 998244353;

ll fpow(ll a, ll b)
{
	ll ans = 1;
	while (b)
	{
		if (b & 1) ans = ans * a % mod;
		a = a * a % mod;
		b >>= 1;
	}
	return ans;
}

int main()
{
	ios::sync_with_stdio(false), cin.tie(0);

	int N;
	cin >> N;
	cout << (fpow(2, N) + mod - 1 - N) % mod;
	return 0;
}

詳細信息

Test #1:

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

input:

3

output:

4

result:

ok "4"

Test #2:

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

input:

5

output:

26

result:

ok "26"

Test #3:

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

input:

100000

output:

538161387

result:

ok "538161387"

Test #4:

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

input:

1

output:

0

result:

ok "0"

Test #5:

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

input:

5350

output:

998242641

result:

ok "998242641"

Test #6:

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

input:

62724

output:

998198137

result:

ok "998198137"

Test #7:

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

input:

2

output:

1

result:

ok "1"

Test #8:

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

input:

4

output:

11

result:

ok "11"

Test #9:

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

input:

96167

output:

998190723

result:

ok "998190723"

Test #10:

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

input:

99999

output:

269030694

result:

ok "269030694"

Test #11:

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

input:

80821

output:

998215590

result:

ok "998215590"

Test #12:

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

input:

691

output:

740311102

result:

ok "740311102"

Test #13:

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

input:

367

output:

675545966

result:

ok "675545966"

Test #14:

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

input:

692

output:

482378542

result:

ok "482378542"

Test #15:

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

input:

369

output:

705696260

result:

ok "705696260"

Test #16:

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

input:

35

output:

419430330

result:

ok "419430330"

Test #17:

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

input:

234

output:

490144146

result:

ok "490144146"

Test #18:

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

input:

327

output:

130396777

result:

ok "130396777"

Test #19:

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

input:

652

output:

117556084

result:

ok "117556084"

Test #20:

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

input:

7305

output:

11786609

result:

ok "11786609"

Test #21:

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

input:

9395

output:

870321930

result:

ok "870321930"

Test #22:

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

input:

9122

output:

996587272

result:

ok "996587272"

Test #23:

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

input:

8780

output:

966309924

result:

ok "966309924"

Test #24:

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

input:

7939

output:

523856979

result:

ok "523856979"

Test #25:

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

input:

1008

output:

954704138

result:

ok "954704138"

Test #26:

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

input:

8871

output:

829374169

result:

ok "829374169"

Test #27:

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

input:

8480

output:

372742505

result:

ok "372742505"

Test #28:

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

input:

70021

output:

202886229

result:

ok "202886229"

Test #29:

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

input:

41153

output:

880779931

result:

ok "880779931"

Test #30:

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

input:

86440

output:

835505974

result:

ok "835505974"

Test #31:

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

input:

19101

output:

37362176

result:

ok "37362176"

Test #32:

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

input:

55627

output:

833199493

result:

ok "833199493"

Test #33:

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

input:

30717

output:

121442010

result:

ok "121442010"

Test #34:

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

input:

10324

output:

968761253

result:

ok "968761253"

Test #35:

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

input:

32688

output:

63693036

result:

ok "63693036"

Extra Test:

score: 0
Extra Test Passed