結果

問題 No.734 Careful Engineer
ユーザー ohanaohana
提出日時 2023-10-27 17:38:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 53,956 KB
最終ジャッジ日時 2024-09-25 13:05:23
合計ジャッジ時間 1,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,216 KB
testcase_01 AC 37 ms
53,052 KB
testcase_02 AC 38 ms
52,504 KB
testcase_03 AC 37 ms
51,944 KB
testcase_04 AC 37 ms
52,500 KB
testcase_05 AC 38 ms
53,956 KB
testcase_06 AC 39 ms
52,248 KB
testcase_07 AC 37 ms
53,028 KB
testcase_08 AC 39 ms
53,456 KB
testcase_09 AC 38 ms
52,360 KB
testcase_10 AC 38 ms
52,332 KB
testcase_11 AC 38 ms
52,004 KB
testcase_12 AC 38 ms
53,100 KB
testcase_13 AC 37 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = map(int, input().split())
a, b, c = a * 60, b, c * 60**2

if a < b:
    print(-1)
else:
    print(int(-(-(c) // (a - b))))
0