結果

問題 No.734 Careful Engineer
ユーザー ⁣
提出日時 2024-05-29 13:50:53
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 307 bytes
コンパイル時間 12,967 ms
コンパイル使用メモリ 383,892 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-29 13:51:10
合計ジャッジ時間 17,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

fn main() {
	let mut s = String::new();
	std::io::stdin().read_line(&mut s).ok();
	let n: Vec<u64> = s.split_whitespace().flat_map(str::parse).collect();
	if n[0] * 60 <= n[1] {
		println!("-1");
		return;
	}
	let mut x = 0;
	while n[0] * 60 * x < n[1] * x + n[2] * 3600 {
		x += 1;
	}
	println!("{}", x)
}
0