結果

問題 No.734 Careful Engineer
ユーザー takakin
提出日時 2020-05-13 22:51:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2025-06-20 00:52:32
合計ジャッジ時間 1,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
a,b,c=map(int,input().split())
if 60*a<=b:
  print(-1)
else:
  print((3600*c-1)//(60*a-b)+1)
0