結果
問題 | No.456 Millions of Submits! |
ユーザー | titia |
提出日時 | 2023-08-09 01:42:44 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 2,872 ms / 4,500 ms |
コード長 | 1,218 bytes |
コンパイル時間 | 13,511 ms |
コンパイル使用メモリ | 399,812 KB |
実行使用メモリ | 83,172 KB |
最終ジャッジ日時 | 2024-11-14 06:51:45 |
合計ジャッジ時間 | 24,955 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 4 ms
6,820 KB |
testcase_08 | AC | 4 ms
6,820 KB |
testcase_09 | AC | 30 ms
6,816 KB |
testcase_10 | AC | 30 ms
6,816 KB |
testcase_11 | AC | 290 ms
10,496 KB |
testcase_12 | AC | 2,872 ms
83,172 KB |
ソースコード
use std::io; fn main() { let mut input = String::new(); io::stdin().read_line(&mut input).expect("Failed to read input"); let q: usize = input.trim().parse().expect("Invalid input"); let mut ans: Vec<f64> = vec![-1.0; q]; for tests in 0..q { let mut input = String::new(); io::stdin().read_line(&mut input).expect("Failed to read input"); let mut numbers = input.split_whitespace().map(|s| s.parse::<f64>().expect("Invalid input")); let a: f64 = numbers.next().unwrap(); let b: f64 = numbers.next().unwrap(); let t: f64 = numbers.next().unwrap(); if a == 0.0 { ans[tests] = f64::powf(2.718281828459045, f64::powf(t, 1.0 / b)); continue; } let mut max = 10.0; let mut min = 0.0; let epsilon = 1e-9; while max - min > epsilon { let mid = (max + min) / 2.0; if f64::powf(mid, a) * f64::ln(mid).powf(b) >= t { max = mid; } else { min = mid; } } ans[tests] = (max + min) / 2.0; } println!("{}", ans.iter().map(|&x| x.to_string()).collect::<Vec<String>>().join("\n")); }