結果

問題 No.734 Careful Engineer
ユーザー pluto77
提出日時 2025-02-09 16:23:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 53,780 KB
最終ジャッジ日時 2025-06-20 02:21:26
合計ジャッジ時間 1,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b,c=map(int,input().split())
if 60*a<=b:
 print(-1)
else:
 print(math.ceil(3600*c/(60*a-b)))
0