結果

問題 No.734 Careful Engineer
ユーザー mlihua09mlihua09
提出日時 2020-09-14 01:48:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 71,596 KB
最終ジャッジ日時 2023-09-04 00:22:32
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,308 KB
testcase_01 WA -
testcase_02 AC 68 ms
71,520 KB
testcase_03 AC 73 ms
71,476 KB
testcase_04 AC 73 ms
71,432 KB
testcase_05 AC 69 ms
71,368 KB
testcase_06 AC 68 ms
71,272 KB
testcase_07 AC 70 ms
71,512 KB
testcase_08 AC 70 ms
71,276 KB
testcase_09 AC 68 ms
71,376 KB
testcase_10 AC 69 ms
71,596 KB
testcase_11 AC 69 ms
71,428 KB
testcase_12 AC 67 ms
71,428 KB
testcase_13 AC 68 ms
71,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

if A * 60 <= B:
    print(-1)

else:
    print((C * 60 * 60) // (A * 60 - B) + 1)
0