結果

問題 No.682 Average
ユーザー tatt61880tatt61880
提出日時 2020-04-25 17:05:02
言語 Kuin
(KuinC++ v.2021.9.17)
結果
RE  
実行時間 -
コード長 321 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 145,388 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-16 10:56:37
合計ジャッジ時間 3,735 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var a: int :: cui@inputInt()
	var b: int :: cui@inputInt()
	var c: int :: cui@inputInt()
	; a * 60 * X >= b * X + 3600 * c
	; (a * 60 - b) * X >= 3600 * c
	var ans: int
	if(a * 60 - b < 0)
		do ans :: -1
	else
		do ans :: (3600 * c + a * 60 - b - 1) / (a * 60 - b)
	end if
	do cui@print("\{ans}\n")
end func
0