結果

問題 No.634 硬貨の枚数1
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-30 18:18:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 368 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 200,168 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-11-21 15:53:30
合計ジャッジ時間 136,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
41,472 KB
testcase_02 AC 5 ms
10,624 KB
testcase_03 AC 3 ms
13,632 KB
testcase_04 AC 3 ms
10,624 KB
testcase_05 AC 2 ms
26,368 KB
testcase_06 AC 4 ms
22,784 KB
testcase_07 AC 2 ms
10,624 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 3 ms
10,624 KB
testcase_10 AC 3 ms
13,640 KB
testcase_11 AC 2 ms
10,624 KB
testcase_12 AC 3 ms
13,636 KB
testcase_13 AC 2 ms
10,624 KB
testcase_14 AC 1,609 ms
14,508 KB
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 3 ms
13,640 KB
testcase_25 AC 2 ms
10,624 KB
testcase_26 AC 3 ms
13,640 KB
testcase_27 AC 2 ms
10,624 KB
testcase_28 AC 3 ms
13,636 KB
testcase_29 AC 4 ms
10,624 KB
testcase_30 AC 3 ms
13,644 KB
testcase_31 AC 3 ms
20,864 KB
testcase_32 AC 2 ms
10,624 KB
testcase_33 AC 2 ms
10,624 KB
testcase_34 AC 635 ms
13,644 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 1,474 ms
14,088 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 3 ms
13,648 KB
testcase_45 AC 47 ms
10,624 KB
testcase_46 AC 1,433 ms
14,124 KB
testcase_47 TLE -
testcase_48 AC 2 ms
13,640 KB
testcase_49 AC 1,436 ms
12,800 KB
testcase_50 TLE -
testcase_51 AC 1,435 ms
12,800 KB
testcase_52 AC 2 ms
13,644 KB
testcase_53 AC 2 ms
10,624 KB
testcase_54 AC 2 ms
13,640 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 TLE -
testcase_67 TLE -
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 5 ms
10,624 KB
testcase_77 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int n;
    cin>>n;
    int dp[n+1];
    fill(dp,dp+n+1,1000000000);
    dp[0]=0;
    for (int i=1;;i++) {
        int a=i*(i+1)/2;
        if (n<a)
            break;
        for (int j=a;j<=n;j++)
            dp[j]=min(dp[j],dp[j-a]+1);
    }
    cout<<dp[n]<<endl;
    return 0;
}
0