結果

問題 No.734 Careful Engineer
ユーザー roaris
提出日時 2020-07-24 22:27:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,700 KB
最終ジャッジ日時 2025-06-20 00:53:41
合計ジャッジ時間 1,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())

if B>=60*A:
    print(-1)
else:
    print((3600*C+60*A-B-1)//(60*A-B))
0