結果
問題 | No.454 逆2乗和 |
ユーザー | titia |
提出日時 | 2023-08-07 02:19:07 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 618 ms |
コンパイル使用メモリ | 148,476 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-24 20:34:46 |
合計ジャッジ時間 | 54,507 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,506 ms
5,248 KB |
testcase_01 | AC | 1,505 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1,504 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1,505 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1,505 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1,510 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1,508 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1,502 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1,506 ms
5,376 KB |
testcase_18 | AC | 1,507 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 1,509 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1,506 ms
5,376 KB |
testcase_24 | AC | 1,505 ms
5,376 KB |
testcase_25 | AC | 1,505 ms
5,376 KB |
testcase_26 | AC | 1,502 ms
5,376 KB |
testcase_27 | AC | 1,505 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1,504 ms
5,376 KB |
testcase_30 | AC | 1,503 ms
5,376 KB |
testcase_31 | AC | 1,505 ms
5,376 KB |
testcase_32 | AC | 1,506 ms
5,376 KB |
testcase_33 | AC | 1,508 ms
5,376 KB |
コンパイルメッセージ
warning: variable `ANS` should have a snake case name --> main.rs:8:13 | 8 | let mut ANS:f64=0.0; | ^^^ help: convert the identifier to snake case: `ans` | = note: `#[warn(non_snake_case)]` on by default warning: 1 warning emitted
ソースコード
fn main() { let x: f64 = { let mut line: String = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.trim().parse().unwrap() }; let mut ANS:f64=0.0; for i in 1..1000000000{ ANS+=1.0/((i as f64 +x)*(i as f64 +x)); } println!("{}",ANS); }