結果

問題 No.444 旨味の相乗効果
ユーザー vjudge1vjudge1
提出日時 2024-12-22 18:40:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 589 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 32,128 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-22 18:40:30
合計ジャッジ時間 4,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 RE -
testcase_05 AC 161 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 RE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
using namespace std;
const int N=90,Mod=1e9+7; int n,c,a[N],ans[N],sum;
void dfs(int u,int lst) {
  if(u==c+1) {
  	long long tot=a[ans[1]]; bool flag=false;
  	for(int i=2;i<=c;i++) {
  	  if(ans[i]!=ans[1]) flag=true;
  	  tot=tot*a[ans[i]]%Mod;
	}
	//printf("%d %d\n",ans[1],ans[2]);
	if(flag) sum=(sum+tot)%Mod;
	return;
  }
  for(int i=lst;i<=n;i++) ans[u]=i,dfs(u+1,i);
}
int main() {
  //freopen("spice.in","r",stdin);
  //freopen("spice.out","w",stdout);
  scanf("%d %d",&n,&c);
  for(int i=1;i<=n;i++) scanf("%d",&a[i]);
  dfs(1,1),printf("%d",sum);
  return 0;
}
0