結果

問題 No.634 硬貨の枚数1
ユーザー peroon
提出日時 2019-04-14 09:33:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 1,346 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 99,688 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-16 15:51:02
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 75
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<complex>
#include<ctype.h>
#include<iomanip>
#include<iostream>
#include<fstream>
#include<map>
#include<math.h>
#include<numeric>
#include<queue>
#include<set>
#include<stack>
#include<stdio.h>
#include<string>
#include<string>
#include<vector>

using namespace std;
typedef long long ll;

#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define p(s) cout<<(s)<<endl
#define p2(s, t) cout << (s) << " " << (t) << endl
#define br() p("")
#define pn(s) cout << (#s) << " " << (s) << endl
#define p_yes() p("Yes")
#define p_no() p("No")

const ll mod = 1e9 + 7;
const ll inf = 1e18;

vector<ll> coins;

bool is_triangle(ll a){
    for(ll coin : coins){
        if(a==coin){
            return true;
        }
    }
    return false;
}

bool is_triangle_two(ll a){
    ll L = coins.size();
    FOR(i, 0, L){
        FOR(j, 0, L){
            if(coins[i]+coins[j]==a){
                return true;
            }
        }
    }
    return false;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    // input
    ll N;
    cin >> N;

    FOR(i, 1, 5000){
        ll coin = i * (i+1) / 2;
        coins.push_back(coin);
    }

    if(is_triangle(N)){
        p(1);
    }
    else if(is_triangle_two(N)){
        p(2);
    }
    else{
        p(3);
    }
    
    return 0;
}
0