結果
問題 | No.352 カード並べ |
ユーザー | koba-e964 |
提出日時 | 2016-03-16 00:01:14 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,382 bytes |
コンパイル時間 | 11,839 ms |
コンパイル使用メモリ | 383,536 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-01 07:03:25 |
合計ジャッジ時間 | 11,448 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 0 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 0 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
コンパイルメッセージ
warning: unused import: `std::cmp::*` --> src/main.rs:1:5 | 1 | use std::cmp::*; | ^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: function `getline` is never used --> src/main.rs:3:4 | 3 | fn getline() -> String { | ^^^^^^^ | = note: `#[warn(dead_code)]` on by default warning: unused `Result` that must be used --> src/main.rs:14:13 | 14 | stdin.read(&mut u8b); | ^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 14 | let _ = stdin.read(&mut u8b); | +++++++
ソースコード
use std::cmp::*; use std::io::*; fn getline() -> String { let mut ret = String::new(); std::io::stdin().read_line(&mut ret).ok(); return ret; } fn getword() -> String { let mut stdin = std::io::stdin(); let mut u8b: [u8; 1] = [0]; loop { let mut buf: Vec<u8> = Vec::with_capacity(16); loop { stdin.read(&mut u8b); if u8b[0] <= ' ' as u8 { break; } else { buf.push(u8b[0]); } } if buf.len() >= 1 { let ret = std::string::String::from_utf8(buf).unwrap(); return ret; } } } fn parse<T : std::str::FromStr>(s : &str) -> T { match s.parse::<T>() { Ok(t) => t, _ => panic!(), } } fn calc(n: i32) -> f64 { // 1.0 * 2 / n + (n - 2) / n * (sum_{i < j = 1}^n 1 / (n * (n - 1) / 2) * i * j)[n := n - 1] // = 2 / n + (n - 2) / n * (1 / n(n-1) * ((n^4 + 2n^3 + n^2) / 4 - (2n^3 + 3n^2 + n) / 6))[n := n - 1] // = 2 / n + (n - 2) / n * (1 / n(n-1) * ((3n^4 + 2n^3 - 3n^2 - 2n) / 12))[n := n - 1] // = 2 / n + (n - 2) * (3n - 1) / 12 let nf = n as f64; return 2.0 / nf + (nf - 2.0) * (3.0 * nf - 1.0) / 12.0; } fn main() { let n: i32 = parse(&getword()); let mut ret: f64 = 1.0; for i in 2 .. (n + 1) { ret += calc(i); } println!("{}", ret); }