結果

問題 No.734 Careful Engineer
ユーザー surprise_tanaka
提出日時 2018-11-24 20:23:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-24 19:24:11
合計ジャッジ時間 1,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 9 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C = map(int,input().split())
if 60 * A < B:
    print(-1)
else:
    answer = (3600 * C) / (60 * A - B)
    if int(answer) == answer:
        print(answer)
    else:
        print(int(answer) + 1)
0