結果

問題 No.634 硬貨の枚数1
ユーザー masaktmasakt
提出日時 2018-01-19 22:17:18
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,312 bytes
コンパイル時間 4,231 ms
コンパイル使用メモリ 154,648 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-11-13 22:34:54
合計ジャッジ時間 133,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
74,240 KB
testcase_02 AC 4 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 2 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 2 ms
67,328 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
12,068 KB
testcase_13 WA -
testcase_14 AC 832 ms
16,924 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 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 WA -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 TLE -
testcase_48 AC 2 ms
10,496 KB
testcase_49 WA -
testcase_50 TLE -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 2 ms
10,624 KB
testcase_54 WA -
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 WA -
testcase_77 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <chrono>
#include <complex>
#include <cstdint>
#include <cstring>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <ostream>
#include <queue>
#include <random>
#include <regex>
#include <set>
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
#define all(r) r.begin(),r.end()
using namespace std;
using ll = int64_t;
using vll = vector<ll>;
struct Solution {
    void solve(std::istream& in, std::ostream& out) {
        ll n;
        in >> n;
        vll dp(n + 1);
        fill(all(dp), -1);
        dp[0] = 0;
        for (int i = 1; i * (i + 1) / 2 <= n; i++) {
            for (int j = i * (i + 1) / 2; j <= n; j++) {
                if (dp[j] >= 0) {
                    dp[j] = i * (i + 1) / 2;
                }
                else {
                    dp[j] = dp[j - (i * (i + 1) / 2)] - 1;
                }
            }
        }
        out << -dp[n] << '\n';
    }
};
void solve(std::istream& in, std::ostream& out) {
    out << std::setprecision(12);
    Solution solution;
    solution.solve(in, out);
}
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    istream& in = cin;
    ostream& out = cout;
    solve(in, out);
    return 0;
}
0