結果
| 問題 | No.734 Careful Engineer |
| コンテスト | |
| ユーザー |
tac
|
| 提出日時 | 2019-07-19 17:29:52 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 423 bytes |
| 記録 | |
| コンパイル時間 | 756 ms |
| コンパイル使用メモリ | 72,492 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 00:08:50 |
| 合計ジャッジ時間 | 1,391 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 3 WA * 7 |
ソースコード
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a, b, c;
cin >> a >> b >> c;
a = a * 60;
c = c * 60 * 60;
if (a == b) {
cout << -1 << endl;
} else {
int x = (c + (a - b - 1)) / (a - b);
if (x < 0) cout << -1 << endl;
else {
cout << x << endl;
}
}
}
tac