結果

問題 No.734 Careful Engineer
ユーザー c-yan
提出日時 2020-08-17 00:12:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2025-06-20 00:53:49
合計ジャッジ時間 1,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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