結果

問題 No.734 Careful Engineer
ユーザー nebukuro09
提出日時 2018-09-28 21:25:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 7,716 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-20 00:43:08
合計ジャッジ時間 1,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, raw_input().split())
A = A * 60
C = C * 3600

if A <= B:
    print -1
    exit()

print (C - 1) / (A - B) + 1
0