結果

問題 No.1825 Except One
ユーザー kwm_tkwm_t
提出日時 2022-01-28 21:59:39
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,594 ms / 3,000 ms
コード長 1,486 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 199,436 KB
実行使用メモリ 10,500 KB
最終ジャッジ日時 2023-08-30 11:08:14
合計ジャッジ時間 28,292 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
4,380 KB
testcase_01 AC 196 ms
4,380 KB
testcase_02 AC 254 ms
4,384 KB
testcase_03 AC 1,594 ms
10,500 KB
testcase_04 AC 1,084 ms
6,600 KB
testcase_05 AC 697 ms
4,384 KB
testcase_06 AC 345 ms
4,380 KB
testcase_07 AC 1,539 ms
10,356 KB
testcase_08 AC 1,532 ms
10,064 KB
testcase_09 AC 313 ms
4,380 KB
testcase_10 AC 1,326 ms
8,304 KB
testcase_11 AC 850 ms
4,952 KB
testcase_12 AC 1,112 ms
6,736 KB
testcase_13 AC 903 ms
5,436 KB
testcase_14 AC 166 ms
4,384 KB
testcase_15 AC 283 ms
4,380 KB
testcase_16 AC 285 ms
4,384 KB
testcase_17 AC 196 ms
4,380 KB
testcase_18 AC 166 ms
4,384 KB
testcase_19 AC 255 ms
4,380 KB
testcase_20 AC 254 ms
4,380 KB
testcase_21 AC 196 ms
4,384 KB
testcase_22 AC 225 ms
4,388 KB
testcase_23 AC 224 ms
4,380 KB
testcase_24 AC 809 ms
4,380 KB
testcase_25 AC 899 ms
4,384 KB
testcase_26 AC 431 ms
4,384 KB
testcase_27 AC 1,428 ms
4,384 KB
testcase_28 AC 1,572 ms
4,380 KB
testcase_29 AC 401 ms
4,384 KB
testcase_30 AC 430 ms
4,380 KB
testcase_31 AC 668 ms
4,384 KB
testcase_32 AC 1,555 ms
7,044 KB
testcase_33 AC 373 ms
4,384 KB
testcase_34 AC 1,574 ms
4,380 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; }
long long dp[101][51][5001];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	dp[0][0][0] = 1;// max,ele,sum;
	int n; cin >> n;
	rep(i, n) {
		int a; cin >> a;
		rrep(j, 101)rrep(k, 51)rrep(l, 5001) {
			if (0 == dp[j][k][l])continue;
			int nj = max(j, a);
			int nk = k + 1;
			int nl = l + a;
			dp[nj][nk][nl] += dp[j][k][l];
		}
	}
	long long sum = 0;
	rep(i, 101)rep(j, 51)rep(k, 5001) {
		//if (0 == dp[i][j][k]) continue;
		//cout << i << j << k << " " << dp[i][j][k] << endl;
		if (j < 2)continue;
		if (0 != k % (j - 1))continue;
		int ave = k / (j - 1);
		if (ave >= i)sum += dp[i][j][k];
	}
	cout << sum << endl;
	return 0;
}
0