結果

問題 No.856 増える演算
ユーザー kwm_tkwm_t
提出日時 2023-05-01 16:27:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 3,153 ms
コード長 1,591 bytes
コンパイル時間 3,987 ms
コンパイル使用メモリ 269,848 KB
実行使用メモリ 12,864 KB
最終ジャッジ日時 2024-04-30 17:34:37
合計ジャッジ時間 13,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,212 KB
testcase_01 AC 76 ms
12,344 KB
testcase_02 AC 79 ms
12,220 KB
testcase_03 AC 80 ms
12,348 KB
testcase_04 AC 83 ms
12,216 KB
testcase_05 AC 85 ms
12,340 KB
testcase_06 AC 87 ms
12,212 KB
testcase_07 AC 83 ms
12,344 KB
testcase_08 AC 75 ms
12,344 KB
testcase_09 AC 83 ms
12,220 KB
testcase_10 AC 84 ms
12,344 KB
testcase_11 AC 82 ms
12,216 KB
testcase_12 AC 76 ms
12,320 KB
testcase_13 AC 79 ms
12,472 KB
testcase_14 AC 78 ms
12,348 KB
testcase_15 AC 84 ms
12,348 KB
testcase_16 AC 85 ms
12,348 KB
testcase_17 AC 75 ms
12,348 KB
testcase_18 AC 75 ms
12,344 KB
testcase_19 AC 73 ms
12,348 KB
testcase_20 AC 74 ms
12,344 KB
testcase_21 AC 74 ms
12,344 KB
testcase_22 AC 74 ms
12,224 KB
testcase_23 AC 78 ms
12,372 KB
testcase_24 AC 76 ms
12,384 KB
testcase_25 AC 80 ms
12,484 KB
testcase_26 AC 77 ms
12,260 KB
testcase_27 AC 78 ms
12,212 KB
testcase_28 AC 77 ms
12,500 KB
testcase_29 AC 78 ms
12,364 KB
testcase_30 AC 77 ms
12,368 KB
testcase_31 AC 75 ms
12,228 KB
testcase_32 AC 77 ms
12,380 KB
testcase_33 AC 78 ms
12,396 KB
testcase_34 AC 87 ms
12,460 KB
testcase_35 AC 81 ms
12,416 KB
testcase_36 AC 84 ms
12,448 KB
testcase_37 AC 82 ms
12,436 KB
testcase_38 AC 78 ms
12,224 KB
testcase_39 AC 82 ms
12,320 KB
testcase_40 AC 80 ms
12,380 KB
testcase_41 AC 80 ms
12,392 KB
testcase_42 AC 84 ms
12,464 KB
testcase_43 AC 78 ms
12,516 KB
testcase_44 AC 77 ms
12,352 KB
testcase_45 AC 79 ms
12,364 KB
testcase_46 AC 81 ms
12,396 KB
testcase_47 AC 79 ms
12,388 KB
testcase_48 AC 81 ms
12,296 KB
testcase_49 AC 80 ms
12,392 KB
testcase_50 AC 82 ms
12,424 KB
testcase_51 AC 85 ms
12,448 KB
testcase_52 AC 85 ms
12,336 KB
testcase_53 AC 111 ms
12,552 KB
testcase_54 AC 96 ms
12,436 KB
testcase_55 AC 111 ms
12,544 KB
testcase_56 AC 97 ms
12,288 KB
testcase_57 AC 115 ms
12,440 KB
testcase_58 AC 107 ms
12,372 KB
testcase_59 AC 125 ms
12,660 KB
testcase_60 AC 104 ms
12,336 KB
testcase_61 AC 129 ms
12,672 KB
testcase_62 AC 124 ms
12,628 KB
testcase_63 AC 86 ms
12,480 KB
testcase_64 AC 116 ms
12,472 KB
testcase_65 AC 99 ms
12,272 KB
testcase_66 AC 102 ms
12,460 KB
testcase_67 AC 106 ms
12,396 KB
testcase_68 AC 118 ms
12,624 KB
testcase_69 AC 120 ms
12,736 KB
testcase_70 AC 131 ms
12,828 KB
testcase_71 AC 120 ms
12,504 KB
testcase_72 AC 114 ms
12,560 KB
testcase_73 AC 133 ms
12,864 KB
testcase_74 AC 134 ms
12,612 KB
testcase_75 AC 131 ms
12,612 KB
testcase_76 AC 133 ms
12,740 KB
testcase_77 AC 135 ms
12,608 KB
testcase_78 AC 136 ms
12,692 KB
testcase_79 AC 137 ms
12,740 KB
testcase_80 AC 135 ms
12,612 KB
testcase_81 AC 135 ms
12,616 KB
testcase_82 AC 109 ms
12,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<int>a(n);
	rep(i, n)cin >> a[i];
	long long sa = 0;
	mint ans = 1;
	rrep(i, n) {
		ans *= pow_mod(a[i], sa, mod);
		sa += a[i];
	}
	vector<long long>v(100005);
	rep(i, n)v[a[i]]++;
	auto vv = convolution_ll(v, v);
	rep(i, n)vv[2 * a[i]]--;
	rep(i, vv.size()) {
		if (0 == vv[i])continue;
		vv[i] /= 2;
		ans *= pow_mod(i, vv[i], mod);
	}
	int mn = a.back();
	vector<pair<double, P>>x;
	rrep(i, n - 1) {
		double d = log(a[i] + mn) + (double)mn * log(a[i]);
		x.push_back({ d,{a[i],mn} });
		chmin(mn, a[i]);
	}
	sort(all(x));
	ans /= x[0].second.first + x[0].second.second;
	ans /= pow_mod(x[0].second.first, x[0].second.second, mod);
	cout << ans.val() << endl;
	return 0;
}
0