結果

問題 No.1272 珍しい級数
ユーザー phsplsphspls
提出日時 2022-10-09 02:13:56
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,035 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 17,658 ms
コンパイル使用メモリ 383,032 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 03:16:58
合計ジャッジ時間 64,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
6,816 KB
testcase_01 AC 339 ms
6,940 KB
testcase_02 AC 1,002 ms
6,940 KB
testcase_03 AC 332 ms
6,944 KB
testcase_04 AC 346 ms
6,940 KB
testcase_05 AC 1,008 ms
6,940 KB
testcase_06 AC 993 ms
6,940 KB
testcase_07 AC 1,003 ms
6,944 KB
testcase_08 AC 1,022 ms
6,944 KB
testcase_09 AC 1,007 ms
6,940 KB
testcase_10 AC 992 ms
6,944 KB
testcase_11 AC 978 ms
6,940 KB
testcase_12 AC 1,003 ms
6,940 KB
testcase_13 AC 985 ms
6,940 KB
testcase_14 AC 1,012 ms
6,940 KB
testcase_15 AC 1,031 ms
6,944 KB
testcase_16 AC 1,008 ms
6,940 KB
testcase_17 AC 984 ms
6,944 KB
testcase_18 AC 1,004 ms
6,940 KB
testcase_19 AC 998 ms
6,944 KB
testcase_20 AC 977 ms
6,948 KB
testcase_21 AC 989 ms
6,940 KB
testcase_22 AC 1,000 ms
6,940 KB
testcase_23 AC 992 ms
6,940 KB
testcase_24 AC 980 ms
6,944 KB
testcase_25 AC 997 ms
6,944 KB
testcase_26 AC 979 ms
6,940 KB
testcase_27 AC 981 ms
6,944 KB
testcase_28 AC 973 ms
6,944 KB
testcase_29 AC 980 ms
6,940 KB
testcase_30 AC 1,012 ms
6,944 KB
testcase_31 AC 1,012 ms
6,944 KB
testcase_32 AC 1,035 ms
6,944 KB
testcase_33 AC 992 ms
6,940 KB
testcase_34 AC 1,019 ms
6,940 KB
testcase_35 AC 1,013 ms
6,940 KB
testcase_36 AC 1,005 ms
6,940 KB
testcase_37 AC 980 ms
6,944 KB
testcase_38 AC 982 ms
6,940 KB
testcase_39 AC 1,003 ms
6,940 KB
testcase_40 AC 1,006 ms
6,940 KB
testcase_41 AC 993 ms
6,940 KB
testcase_42 AC 985 ms
6,944 KB
testcase_43 AC 980 ms
6,944 KB
testcase_44 AC 970 ms
6,940 KB
testcase_45 AC 990 ms
6,940 KB
testcase_46 AC 987 ms
6,940 KB
testcase_47 AC 993 ms
6,940 KB
testcase_48 AC 992 ms
6,944 KB
testcase_49 AC 988 ms
6,944 KB
testcase_50 AC 998 ms
6,944 KB
testcase_51 AC 988 ms
6,944 KB
testcase_52 AC 1,010 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut k = String::new();
    std::io::stdin().read_line(&mut k).ok();
    let k: usize = k.trim().parse().unwrap();

    let mut result = 0.;
    for n in 1..10000000 {
        result += ((k * n) as f64).sin() / (n as f64).powf(n as f64);
    }
    println!("{:.09}", result);
}
0