結果
問題 | No.604 誕生日のお小遣い |
ユーザー | mmn15277198 |
提出日時 | 2021-04-08 22:53:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,583 bytes |
コンパイル時間 | 1,006 ms |
コンパイル使用メモリ | 92,076 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 01:10:58 |
合計ジャッジ時間 | 1,741 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <functional> #include <map> #include <iomanip> #include <stdio.h> #include <math.h> #include <queue> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; #define rep(i,n) for(int i = 0; i < (n); i++) #define pb push_back #define eb emplace_back #define fi first #define se second #define all(x) x.begin() , x.end() #define vi vector<int> #define vll vector<ll> #define vb vector<bool> const static int INF = 1001001001; const static ll LINF = 1001001001001001001LL; const static ld PI = 3.1415926535897932384626L; const static int MOD = int(1e9) + int(7); //const static ll MOD = ll(1e9) + ll(7); //const static int MOD = 998244353; //const static int MOD = 998244353; const static int MX = 202020; ll gcd (ll a , ll b) { if (a < b) swap(a , b); if (a % b == 0) return b; else return gcd (b , a % b); } ll lcm (ll a , ll b) { return (a / gcd (a , b) * b); } int keta (ll x) { int ret = 0; while(x) { ret++; x /= 10; } return ret; } inline int in () { int x; scanf("%d" , &x); return x; } inline ll lin () { ll x; scanf("%lld" , &x); return x; } /* //memo v.erase(unique(all(v)), v.end()); */ int main () { ll a = lin(); ll b = lin(); ll c = lin(); ll ok = (ll)1e20 + 1; ll ng = (ll)-1; while (ok - ng > 1) { ll mid = (ok + ng) / 2; ll cost = mid - mid / a + mid / a * b; if (cost >= c) { ok = mid; } else { ng = mid; } } cout << ok << endl; return 0; }