結果

問題 No.1514 Squared Matching
ユーザー koba-e964koba-e964
提出日時 2021-10-25 19:49:49
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 659 ms / 4,000 ms
コード長 1,051 bytes
コンパイル時間 13,413 ms
コンパイル使用メモリ 400,732 KB
実行使用メモリ 490,176 KB
最終ジャッジ日時 2024-10-03 16:19:58
合計ジャッジ時間 24,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,820 KB
testcase_01 AC 659 ms
490,120 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 6 ms
9,332 KB
testcase_07 AC 95 ms
95,144 KB
testcase_08 AC 595 ms
472,176 KB
testcase_09 AC 508 ms
413,244 KB
testcase_10 AC 552 ms
447,592 KB
testcase_11 AC 585 ms
466,120 KB
testcase_12 AC 598 ms
479,028 KB
testcase_13 AC 601 ms
485,412 KB
testcase_14 AC 613 ms
487,868 KB
testcase_15 AC 611 ms
489,164 KB
testcase_16 AC 628 ms
489,732 KB
testcase_17 AC 631 ms
490,000 KB
testcase_18 AC 616 ms
490,176 KB
testcase_19 AC 615 ms
490,148 KB
testcase_20 AC 619 ms
490,072 KB
testcase_21 AC 617 ms
490,176 KB
testcase_22 AC 116 ms
99,452 KB
testcase_23 AC 202 ms
197,040 KB
testcase_24 AC 319 ms
294,860 KB
testcase_25 AC 465 ms
392,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn get_word() -> String {
    let stdin = std::io::stdin();
    let mut stdin=stdin.lock();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() }

fn main() {
    let n: usize = get();
    let mut repr = vec![0; n + 1];
    for i in 1..7100 {
        for j in 1..n / i / i + 1 {
            repr[j * i * i] = j;
        }
    }
    let mut f = vec![0i16; n + 1];
    for i in 1..n + 1 {
        f[repr[i]] += 1;
    }
    let mut ans = 0i64;
    for i in 1..n + 1 {
        let x = f[i] as i64;
        ans += x * x;
    }
    println!("{}", ans);
}
0