結果

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

ソースコード

diff #

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