結果
問題 | No.903 太郎の確率 |
ユーザー | Program_Panda |
提出日時 | 2020-04-04 22:09:05 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 34 ms |
コンパイル使用メモリ | 6,696 KB |
実行使用メモリ | 41,592 KB |
最終ジャッジ日時 | 2024-10-13 01:40:14 |
合計ジャッジ時間 | 991 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
ソースコード
fn read<T: std::str::FromStr>() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec<T: std::str::FromStr>() -> Vec<T> { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().split_whitespace() .map(|e| e.parse().ok().unwrap()).collect() } fn main() { let num: i32 = read(); let ans: f32 = 1 as f32 / num as f32; println!("{}", ans); }