結果

問題 No.734 Careful Engineer
ユーザー pazzle1230pazzle1230
提出日時 2018-09-28 22:52:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 761 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 159,852 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-18 00:04:56
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 10 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define INF_LL (int64)1e18
#define INF (int32)1e9
#define REP(i, n) for(int64 i = 0;i < (n);i++)
#define FOR(i, a, b) for(int64 i = (a);i < (b);i++)
#define all(x) x.begin(),x.end()
#define fs first
#define sc second

using int32 = int_fast32_t;
using uint32 = uint_fast32_t;
using int64 = int_fast64_t;
using uint64 = uint_fast64_t;
using PII = pair<int32, int32>;
using PLL = pair<int64, int64>;

const double eps = 1e-10;

template<typename A, typename B>inline void chmin(A &a, B b){if(a > b) a = b;}
template<typename A, typename B>inline void chmax(A &a, B b){if(a < b) a = b;}

int main(void){
	int64 a, b, c, x;
	cin >> a >> b >> c;
	a *= 60; c *= 3600;
	cout << max((int64)-1, (c+a-b-1)/(a-b)) << endl;
}
0