結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー titiatitia
提出日時 2024-10-18 23:11:35
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 657 bytes
コンパイル時間 14,132 ms
コンパイル使用メモリ 400,972 KB
実行使用メモリ 8,732 KB
最終ジャッジ日時 2024-10-18 23:11:58
合計ジャッジ時間 23,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 50 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 9 ms
6,824 KB
testcase_12 AC 25 ms
6,820 KB
testcase_13 AC 10 ms
6,824 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 18 ms
6,816 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 736 ms
6,820 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
08_evil_01.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: value assigned to `k` is never read
  --> src/main.rs:19:13
   |
19 |     let mut k: i64=0;
   |             ^
   |
   = help: maybe it is overwritten before being read?
   = note: `#[warn(unused_assignments)]` on by default

warning: value assigned to `nec` is never read
  --> src/main.rs:20:13
   |
20 |     let mut nec:i64=0;
   |             ^^^
   |
   = help: maybe it is overwritten before being read?

ソースコード

diff #

#![allow(
    non_snake_case,
    unused_variables,
    dead_code,
    unused_imports,
    unused_mut,
    non_upper_case_globals
)]

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

    let MOD: i64 = 998244353;
    let mut ANS: i64 =0;
    let mut k: i64=0;
    let mut nec:i64=0;

    for i in 0..n+1{
        let mut now:i64=1;

        while now<=i as i64{
            k=i as i64/now;
            nec=i as i64/k+1;

            ANS=(ANS + k*(nec-now))%MOD;

            now=nec;

        }
    }
    println!("{}",ANS);
}
0