結果

問題 No.2846 Birthday Cake
ユーザー 沙耶花沙耶花
提出日時 2024-08-23 21:54:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,179 bytes
コンパイル時間 4,203 ms
コンパイル使用メモリ 273,496 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-08-23 21:55:15
合計ジャッジ時間 22,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 977 ms
83,328 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1,095 ms
93,440 KB
testcase_06 AC 1,183 ms
100,224 KB
testcase_07 AC 1,278 ms
103,936 KB
testcase_08 AC 1,370 ms
105,600 KB
testcase_09 AC 1,394 ms
106,112 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 752 ms
82,432 KB
testcase_13 AC 968 ms
102,272 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 53 ms
12,544 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 1,003 ms
104,192 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 6 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 14 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 191 ms
28,544 KB
testcase_33 AC 1,038 ms
104,192 KB
testcase_34 AC 48 ms
12,288 KB
testcase_35 AC 51 ms
12,544 KB
testcase_36 AC 320 ms
33,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

long long N,K;

long long En = 1;
vector<long long> la,lb;
long long L;
map<long long,long long> mp[25];
map<long long,long long> mp2[25];
void dfs(int ci,int ck,long long cx,long long cv){
	if(cx > L)return;

	if(ck>=la.size()){
		long long t = 1;
		rep(i,K){
			t *= i+1;
		}
		mp[ci][cx] += t/cv;
		return;
	}
	long long t = 1LL;
	rep(i,K-ci+1){
		if(i==0){
			dfs(ci,ck+1,cx,cv);
		}
		else{
			long long ncx = cx;
			ncx += (L / la[ck])*i;
			dfs(ci+i,ck+1,ncx,cv*t);
		}
		t *= i+1;
	}
}

int main(){
	
	cin>>K>>N;
	rep(i,K)En *= i+1;
	L = 1;
	rep(i,N)L = lcm(L,i+1);
	rep(i,N){
		if(i%2)la.push_back(i+1);
		else lb.push_back(i+1);
	}
	dfs(0,0,0,1);
	swap(la,lb);
	swap(mp,mp2);
	dfs(0,0,0,1);
	__int128 ans  =0;
	rep(i,K+1){
		for(auto x:mp[i]){
			long long A = x.first,B = x.second;
			__int128 X = B;
			X *= mp2[K-i][L-A];
			ans += X;
		}
	}
	rep(i,K)ans /=i+1;
	long long aa = ans;
	cout<<aa<<endl;
    return 0;
}
0