結果

問題 No.634 硬貨の枚数1
ユーザー koyoprokoyopro
提出日時 2020-07-19 00:32:40
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,116 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 160,072 KB
実行使用メモリ 159,492 KB
最終ジャッジ日時 2024-12-14 15:56:28
合計ジャッジ時間 6,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
159,304 KB
testcase_01 AC 42 ms
159,304 KB
testcase_02 AC 43 ms
159,412 KB
testcase_03 AC 42 ms
159,320 KB
testcase_04 AC 43 ms
159,396 KB
testcase_05 AC 42 ms
159,384 KB
testcase_06 AC 42 ms
159,436 KB
testcase_07 AC 42 ms
159,388 KB
testcase_08 AC 41 ms
159,300 KB
testcase_09 AC 43 ms
159,332 KB
testcase_10 AC 42 ms
159,292 KB
testcase_11 AC 42 ms
159,400 KB
testcase_12 AC 42 ms
159,364 KB
testcase_13 AC 42 ms
159,320 KB
testcase_14 AC 41 ms
159,376 KB
testcase_15 AC 42 ms
159,328 KB
testcase_16 AC 42 ms
159,320 KB
testcase_17 AC 42 ms
159,460 KB
testcase_18 AC 42 ms
159,296 KB
testcase_19 AC 43 ms
159,436 KB
testcase_20 AC 42 ms
159,368 KB
testcase_21 AC 41 ms
159,388 KB
testcase_22 AC 42 ms
159,328 KB
testcase_23 AC 43 ms
159,340 KB
testcase_24 AC 42 ms
159,388 KB
testcase_25 AC 43 ms
159,304 KB
testcase_26 AC 41 ms
159,336 KB
testcase_27 AC 43 ms
159,348 KB
testcase_28 AC 42 ms
159,296 KB
testcase_29 AC 42 ms
159,388 KB
testcase_30 AC 42 ms
159,328 KB
testcase_31 AC 42 ms
159,320 KB
testcase_32 AC 42 ms
159,352 KB
testcase_33 AC 42 ms
159,352 KB
testcase_34 AC 42 ms
159,412 KB
testcase_35 AC 41 ms
159,288 KB
testcase_36 AC 42 ms
159,384 KB
testcase_37 AC 41 ms
159,396 KB
testcase_38 AC 41 ms
159,348 KB
testcase_39 AC 41 ms
159,384 KB
testcase_40 AC 42 ms
159,408 KB
testcase_41 AC 41 ms
159,320 KB
testcase_42 AC 41 ms
159,320 KB
testcase_43 AC 41 ms
159,324 KB
testcase_44 AC 41 ms
159,292 KB
testcase_45 AC 42 ms
159,392 KB
testcase_46 AC 42 ms
159,308 KB
testcase_47 AC 41 ms
159,328 KB
testcase_48 WA -
testcase_49 AC 42 ms
159,400 KB
testcase_50 AC 42 ms
159,348 KB
testcase_51 AC 42 ms
159,320 KB
testcase_52 AC 41 ms
159,324 KB
testcase_53 AC 41 ms
159,400 KB
testcase_54 AC 41 ms
159,324 KB
testcase_55 AC 41 ms
159,324 KB
testcase_56 AC 42 ms
159,304 KB
testcase_57 AC 41 ms
159,328 KB
testcase_58 AC 42 ms
159,316 KB
testcase_59 AC 42 ms
159,360 KB
testcase_60 AC 43 ms
159,332 KB
testcase_61 AC 41 ms
159,336 KB
testcase_62 AC 41 ms
159,336 KB
testcase_63 AC 43 ms
159,292 KB
testcase_64 AC 41 ms
159,300 KB
testcase_65 AC 42 ms
159,324 KB
testcase_66 AC 42 ms
159,384 KB
testcase_67 AC 41 ms
159,356 KB
testcase_68 AC 41 ms
159,336 KB
testcase_69 AC 42 ms
159,492 KB
testcase_70 AC 42 ms
159,380 KB
testcase_71 AC 42 ms
159,408 KB
testcase_72 AC 41 ms
159,344 KB
testcase_73 AC 41 ms
159,384 KB
testcase_74 AC 41 ms
159,408 KB
testcase_75 AC 41 ms
159,388 KB
testcase_76 AC 41 ms
159,392 KB
testcase_77 AC 42 ms
159,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/

int N;
vector<int> C(2e7, 0); // SorDに入っている金額のチェック用

void solve() {
    cin>>N;
    
    int ans = 3;
    REP(i,N) {
        int n = i * (i+1) / 2;
        if (n > N) break;
        C[n] = 1;
        if (C[N-n]) ans = 2;
    }
    if (C[N]) ans = 1;
    cout << ans << endl;
}
0