QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#303977#8009. Growing Sequenceszky (Kangyang Zhou)#AC ✓1ms3688kbC++14901b2024-01-13 10:04:242024-01-13 10:04:25

Judging History

This is the latest submission verdict.

  • [2024-01-13 10:04:25]
  • Judged
  • Verdict: AC
  • Time: 1ms
  • Memory: 3688kb
  • [2024-01-13 10:04:24]
  • Submitted

answer

#include<bits/stdc++.h>
#define L(i, j, k) for(int i = (j); i <= (k); ++i)
#define R(i, j, k) for(int i = (j); i >= (k); --i)
#define ll long long
#define sz(a) ((int) (a).size())
#define vi vector < int >
#define me(a, x) memset(a, x, sizeof(a))
#define ull unsigned long long
#define ld __float128
#define pb emplace_back
using namespace std;
const int N = 5007, mod = 998244353;
int n;
ll c;
int dp[128];
int ndp[128];
int main() {
	ios :: sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	cin >> n >> c;
	c -= 1LL << (n - 1);
	if(c < 0) {
		cout << 0 << '\n';
		return 0;
	}
	dp[0] = 1;
	L(i, 0, 60) {
		int mult = min(i + 1, n) + 1;
		L(t, 1, mult) { 
			R(j, 60 + t, 0) {
				(dp[j + 1] += dp[j]) %= mod;
			}
		}
		me(ndp, 0);
		L(j, 0, 120) if(j % 2 == (c >> i & 1)) 
			ndp[j / 2] = dp[j];
		swap(dp, ndp);
	}
	cout << dp[0] << '\n';
	return 0;
} 


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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

1 5

output:

5

result:

ok answer is '5'

Test #2:

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

input:

3 6

output:

4

result:

ok answer is '4'

Test #3:

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

input:

15 179

output:

0

result:

ok answer is '0'

Test #4:

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

input:

35 1234567887654321

output:

576695683

result:

ok answer is '576695683'

Test #5:

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

input:

45 228228228

output:

0

result:

ok answer is '0'

Test #6:

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

input:

60 576460752303423487

output:

0

result:

ok answer is '0'

Test #7:

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

input:

60 576460752303423488

output:

1

result:

ok answer is '1'

Test #8:

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

input:

1 1000000000000000000

output:

716070898

result:

ok answer is '716070898'

Test #9:

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

input:

1 1

output:

1

result:

ok answer is '1'

Test #10:

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

input:

15 1

output:

0

result:

ok answer is '0'

Test #11:

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

input:

1 964573170374708959

output:

695628865

result:

ok answer is '695628865'

Test #12:

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

input:

2 336

output:

28224

result:

ok answer is '28224'

Test #13:

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

input:

5 463

output:

172916212

result:

ok answer is '172916212'

Test #14:

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

input:

7 75427

output:

523581579

result:

ok answer is '523581579'

Test #15:

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

input:

10 28166

output:

145818175

result:

ok answer is '145818175'

Test #16:

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

input:

12 77890

output:

724302124

result:

ok answer is '724302124'

Test #17:

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

input:

3 401245

output:

68076875

result:

ok answer is '68076875'

Test #18:

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

input:

8 511955

output:

109524351

result:

ok answer is '109524351'

Test #19:

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

input:

15 484969

output:

99426993

result:

ok answer is '99426993'

Test #20:

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

input:

30 779369

output:

0

result:

ok answer is '0'

Test #21:

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

input:

17 638679755

output:

132031375

result:

ok answer is '132031375'

Test #22:

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

input:

25 669522429

output:

896585516

result:

ok answer is '896585516'

Test #23:

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

input:

29 748278478

output:

563047844

result:

ok answer is '563047844'

Test #24:

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

input:

33 642978862039931

output:

550967529

result:

ok answer is '550967529'

Test #25:

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

input:

38 218051542638139

output:

29411033

result:

ok answer is '29411033'

Test #26:

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

input:

44 188775063557057

output:

185410072

result:

ok answer is '185410072'

Test #27:

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

input:

48 4677253159871213

output:

863467586

result:

ok answer is '863467586'

Test #28:

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

input:

22 854279883518523144

output:

916505804

result:

ok answer is '916505804'

Test #29:

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

input:

38 730620861826239715

output:

433138392

result:

ok answer is '433138392'

Test #30:

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

input:

54 435826341367976434

output:

237455633

result:

ok answer is '237455633'

Test #31:

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

input:

55 536518888651224157

output:

665085880

result:

ok answer is '665085880'

Test #32:

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

input:

56 413839394784728775

output:

647247529

result:

ok answer is '647247529'

Test #33:

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

input:

57 514531937773009201

output:

425329246

result:

ok answer is '425329246'

Test #34:

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

input:

58 391852448201481116

output:

522300883

result:

ok answer is '522300883'

Test #35:

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

input:

59 492544995484728838

output:

937899244

result:

ok answer is '937899244'

Test #36:

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

input:

60 693597573066212298

output:

490610488

result:

ok answer is '490610488'

Test #37:

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

input:

60 1000000000000000000

output:

13328531

result:

ok answer is '13328531'

Extra Test:

score: 0
Extra Test Passed