結果

問題 No.2479 Sum of Squares
ユーザー atcoder8atcoder8
提出日時 2023-09-22 21:31:00
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 24,969 ms
コンパイル使用メモリ 378,156 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 12:12:23
合計ジャッジ時間 23,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 0 ms
6,820 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 673 ms
6,940 KB
testcase_04 AC 224 ms
6,944 KB
testcase_05 AC 126 ms
6,940 KB
testcase_06 AC 154 ms
6,944 KB
testcase_07 AC 143 ms
6,940 KB
testcase_08 AC 188 ms
6,940 KB
testcase_09 AC 159 ms
6,944 KB
testcase_10 AC 187 ms
6,940 KB
testcase_11 AC 162 ms
6,948 KB
testcase_12 AC 174 ms
6,944 KB
testcase_13 AC 116 ms
6,944 KB
testcase_14 AC 154 ms
6,940 KB
testcase_15 AC 153 ms
6,944 KB
testcase_16 AC 160 ms
6,940 KB
testcase_17 AC 157 ms
6,944 KB
testcase_18 AC 150 ms
6,940 KB
testcase_19 AC 166 ms
6,940 KB
testcase_20 AC 174 ms
6,944 KB
testcase_21 AC 151 ms
6,940 KB
testcase_22 AC 162 ms
6,940 KB
testcase_23 AC 139 ms
6,940 KB
testcase_24 AC 151 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    let mut aa = vec![];
    while s != 0 {
        let sqrt_a = (2_usize..).find(|&a| a.pow(2) > s).unwrap() - 1;
        aa.push(sqrt_a.pow(2));
        s -= sqrt_a.pow(2);
    }

    println!("{}", aa.len());
    println!(
        "{}",
        aa.iter()
            .map(|a| a.to_string())
            .collect::<Vec<String>>()
            .join(" ")
    );
}
0