結果

問題 No.634 硬貨の枚数1
ユーザー matsukin1111matsukin1111
提出日時 2019-04-26 12:21:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,093 bytes
コンパイル時間 2,905 ms
コンパイル使用メモリ 93,188 KB
実行使用メモリ 584,056 KB
最終ジャッジ日時 2024-11-24 03:43:57
合計ジャッジ時間 141,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
49,736 KB
testcase_01 AC 11 ms
136,332 KB
testcase_02 AC 15 ms
50,500 KB
testcase_03 AC 12 ms
256,960 KB
testcase_04 AC 12 ms
49,980 KB
testcase_05 AC 11 ms
256,796 KB
testcase_06 AC 12 ms
50,168 KB
testcase_07 AC 12 ms
255,724 KB
testcase_08 AC 11 ms
49,816 KB
testcase_09 AC 13 ms
256,004 KB
testcase_10 AC 14 ms
50,172 KB
testcase_11 AC 11 ms
440,240 KB
testcase_12 AC 13 ms
50,180 KB
testcase_13 AC 20 ms
504,972 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 15 ms
50,052 KB
testcase_25 AC 12 ms
49,868 KB
testcase_26 AC 12 ms
49,944 KB
testcase_27 AC 12 ms
133,312 KB
testcase_28 AC 14 ms
50,004 KB
testcase_29 AC 14 ms
321,096 KB
testcase_30 AC 14 ms
49,960 KB
testcase_31 AC 13 ms
343,636 KB
testcase_32 AC 12 ms
49,792 KB
testcase_33 AC 12 ms
233,860 KB
testcase_34 AC 1,080 ms
77,008 KB
testcase_35 MLE -
testcase_36 TLE -
testcase_37 MLE -
testcase_38 TLE -
testcase_39 MLE -
testcase_40 TLE -
testcase_41 MLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 12 ms
49,736 KB
testcase_45 MLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 12 ms
49,820 KB
testcase_49 MLE -
testcase_50 TLE -
testcase_51 MLE -
testcase_52 AC 12 ms
49,804 KB
testcase_53 MLE -
testcase_54 AC 12 ms
49,888 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 MLE -
testcase_67 MLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 AC 18 ms
50,496 KB
testcase_77 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include <cstdlib>  
#include <cmath>   
#include<cctype>
#include<string>
#include<set>
#include<iomanip>
#include <map>
#include<algorithm>
#include <functional>
#include<vector>
#include<climits>
#include<stack>
#include<queue>
#include <deque>
#include <climits>
#include <typeinfo>
#include <utility> 
#define all(x) (x).begin(),(x).end()
#define rep(i,m,n) for(int i = m;i < n;++i)
#define pb push_back
#define fore(i,a) for(auto &i:a)
#define rrep(i,m,n) for(int i = m;i >= n;--i)
#define INF INT_MAX/2
using namespace std;
using ll = long long;
using R = double;
using Data = pair<ll, vector<int>>;
const ll MOD = 1e9 + 7;
const ll inf = 1LL << 50;
struct edge { ll from; ll to; ll cost; };
 
int memo[10101010];

int	rec(int n){
	if (n == 0)return 0;
	if (memo[n] != -1)return memo[n];

	int temp = 10101010;
	for (int i = 1; i*(i + 1) / 2 <= n; i++) {
		temp = min(temp,rec(n - i*(i+1)/2)+1);
	}
	return memo[n] = temp;
}



int main() {
	int n;
	cin >> n;

	memset(memo,-1,sizeof(memo));

	cout << rec(n) << endl;
	
	return 0;
}
0