結果

問題 No.800 四平方定理
ユーザー phsplsphspls
提出日時 2022-12-10 01:02:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 13,133 ms
コンパイル使用メモリ 378,652 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-10-14 23:23:42
合計ジャッジ時間 17,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,248 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 12 ms
5,248 KB
testcase_03 AC 13 ms
5,248 KB
testcase_04 AC 12 ms
5,248 KB
testcase_05 AC 13 ms
5,248 KB
testcase_06 AC 13 ms
5,248 KB
testcase_07 AC 13 ms
5,248 KB
testcase_08 AC 15 ms
5,248 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 90 ms
51,072 KB
testcase_11 AC 96 ms
55,040 KB
testcase_12 AC 99 ms
56,576 KB
testcase_13 AC 86 ms
49,664 KB
testcase_14 AC 93 ms
52,992 KB
testcase_15 AC 102 ms
56,832 KB
testcase_16 AC 96 ms
53,760 KB
testcase_17 AC 97 ms
53,632 KB
testcase_18 AC 109 ms
61,312 KB
testcase_19 AC 111 ms
61,184 KB
testcase_20 AC 12 ms
5,248 KB
testcase_21 AC 12 ms
5,248 KB
testcase_22 AC 108 ms
61,568 KB
testcase_23 AC 196 ms
102,016 KB
testcase_24 AC 180 ms
94,080 KB
testcase_25 AC 190 ms
101,632 KB
testcase_26 AC 12 ms
5,248 KB
testcase_27 AC 12 ms
5,248 KB
testcase_28 AC 179 ms
93,568 KB
testcase_29 AC 189 ms
97,792 KB
testcase_30 AC 181 ms
93,824 KB
testcase_31 AC 167 ms
87,168 KB
testcase_32 AC 182 ms
94,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nd = String::new();
    std::io::stdin().read_line(&mut nd).ok();
    let nd: Vec<usize> = nd.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nd[0];
    let d = nd[1];

    let mut cnts = vec![0usize; 2*2000*2000+1];
    let mut cnt2 = vec![0usize; 2*2000*2000+1];
    for x in 1..=n {
        for y in 1..=n {
            cnts[x*x + y*y] += 1;
        }
    }
    for z in 1..=n {
        for w in 1..=n {
            if z*z > w*w + d { continue; }
            cnt2[w*w +d - z*z] += 1;
        }
    }
    let mut result = 0usize;
    for i in 0..=2*2000*2000 {
        result += cnts[i] * cnt2[i];
    }
    println!("{}", result);
}
0