結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 KA37RIKA37RI
提出日時 2023-09-25 08:33:57
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 880 ms / 4,000 ms
コード長 1,155 bytes
コンパイル時間 12,667 ms
コンパイル使用メモリ 402,244 KB
実行使用メモリ 407,672 KB
最終ジャッジ日時 2024-09-19 12:57:45
合計ジャッジ時間 36,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 779 ms
407,520 KB
testcase_01 AC 800 ms
407,456 KB
testcase_02 AC 817 ms
407,432 KB
testcase_03 AC 748 ms
407,428 KB
testcase_04 AC 724 ms
407,568 KB
testcase_05 AC 742 ms
407,440 KB
testcase_06 AC 728 ms
407,540 KB
testcase_07 AC 740 ms
407,512 KB
testcase_08 AC 733 ms
407,444 KB
testcase_09 AC 721 ms
407,472 KB
testcase_10 AC 728 ms
407,496 KB
testcase_11 AC 735 ms
407,452 KB
testcase_12 AC 760 ms
407,468 KB
testcase_13 AC 725 ms
407,672 KB
testcase_14 AC 729 ms
407,544 KB
testcase_15 AC 727 ms
407,540 KB
testcase_16 AC 744 ms
407,500 KB
testcase_17 AC 733 ms
407,536 KB
testcase_18 AC 741 ms
407,440 KB
testcase_19 AC 730 ms
407,532 KB
testcase_20 AC 808 ms
407,456 KB
testcase_21 AC 808 ms
407,452 KB
testcase_22 AC 880 ms
407,528 KB
testcase_23 AC 815 ms
407,464 KB
testcase_24 AC 818 ms
407,456 KB
testcase_25 AC 714 ms
407,568 KB
testcase_26 AC 738 ms
407,496 KB
testcase_27 AC 784 ms
407,524 KB
testcase_28 AC 736 ms
407,476 KB
testcase_29 AC 798 ms
407,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;
use std::collections::HashMap;

fn solve() -> i32 {
  // input! {
  //   x: i64,
  // }
  let x: i32 = input().parse().unwrap();
  let mut cubes: HashMap<i32, u128> = HashMap::new();
  for a in 0..=300i32 {
    for b in a..=300 {
      for c in b..=300 {
        let y = a.pow(3) + b.pow(3) + c.pow(3);
        if let Some(v) = cubes.get_mut(&y) {
          *v <<= 9;
          *v |= c as u128;
        }else {
          cubes.insert(y, c as u128);
        }
      }
    }
  }
  let mut ans = 0;
  for d in 0..=300i32 {
    for e in d..=300 {
      for f in e..=300 {
        let y = d.pow(3) + e.pow(3) + f.pow(3);
        if let Some(v) = cubes.get(&(x - y)) {
          let mut zero = true;
          let mut u = *v;
          while u > 0 || zero {
            let c = (u & 0x1ff) as i32;
            if c <= d {
              ans += 1;
            }
            u >>= 9;
            zero = false;
          }
        }
      }
    }
  }
  return ans;
}

fn input() -> String {
  let mut buffer = String::new();
  io::stdin().read_line(&mut buffer).unwrap();
  return buffer.trim().to_string();
}

fn main() {
  println!("{}", solve());
}
0