結果
| 問題 |
No.634 硬貨の枚数1
|
| コンテスト | |
| ユーザー |
treeone
|
| 提出日時 | 2018-01-19 21:48:17 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 20 ms / 2,000 ms |
| コード長 | 819 bytes |
| コンパイル時間 | 1,519 ms |
| コンパイル使用メモリ | 157,540 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-25 18:46:32 |
| 合計ジャッジ時間 | 3,792 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 75 |
ソースコード
#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define REP(i, n) rep(i, 0, n)
#define repb(i, a, b) for(int i = a; i >= b; i--)
#define all(a) a.begin(), a.end()
#define int long long
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e12;
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n, ans = 3;
cin >> n;
for(int i = 1; i * (i + 1) / 2 <= n; i++){
int a = i * (i + 1) / 2;
if(a == n){
ans = 1; break;
}
for(int j = 1; j * (j + 1) / 2 <= n; j++){
int b = j * (j + 1) / 2;
if(a + b == n){
chmin(ans, 2LL);
}
}
}
cout << ans << endl;
}
treeone