結果

問題 No.2510 Six Cube Sum Counting
ユーザー SSRSSSRS
提出日時 2023-10-20 21:37:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,710 ms / 4,000 ms
コード長 548 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 206,716 KB
実行使用メモリ 174,880 KB
最終ジャッジ日時 2024-09-20 17:45:24
合計ジャッジ時間 83,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,594 ms
174,876 KB
testcase_01 AC 2,565 ms
174,880 KB
testcase_02 AC 2,569 ms
174,752 KB
testcase_03 AC 2,570 ms
174,624 KB
testcase_04 AC 2,596 ms
174,748 KB
testcase_05 AC 2,625 ms
174,752 KB
testcase_06 AC 2,628 ms
174,752 KB
testcase_07 AC 2,536 ms
174,752 KB
testcase_08 AC 2,559 ms
174,752 KB
testcase_09 AC 2,532 ms
174,752 KB
testcase_10 AC 2,622 ms
174,880 KB
testcase_11 AC 2,586 ms
174,756 KB
testcase_12 AC 2,564 ms
174,756 KB
testcase_13 AC 2,567 ms
174,756 KB
testcase_14 AC 2,648 ms
174,748 KB
testcase_15 AC 2,645 ms
174,752 KB
testcase_16 AC 2,604 ms
174,748 KB
testcase_17 AC 2,668 ms
174,752 KB
testcase_18 AC 2,557 ms
174,752 KB
testcase_19 AC 2,598 ms
174,752 KB
testcase_20 AC 2,632 ms
174,876 KB
testcase_21 AC 2,646 ms
174,880 KB
testcase_22 AC 2,585 ms
174,752 KB
testcase_23 AC 2,618 ms
174,748 KB
testcase_24 AC 2,659 ms
174,752 KB
testcase_25 AC 2,710 ms
174,752 KB
testcase_26 AC 2,605 ms
174,756 KB
testcase_27 AC 2,578 ms
174,628 KB
testcase_28 AC 2,646 ms
174,788 KB
testcase_29 AC 2,608 ms
174,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 300;
int main(){
  int X;
  cin >> X;
  int ans = 0;
  unordered_map<int, int> mp;
  for (int i = 0; i <= MAX; i++){
    for (int j = 0; j <= i; j++){
      for (int k = j; k <= i; k++){
        mp[j * j * j + k * k * k + i * i * i]++;
      }
    }
    for (int j = i; j <= MAX; j++){
      for (int k = j; k <= MAX; k++){
        int s = X - i * i * i - j * j * j - k * k * k;
        if (mp.count(s) != 0){
          ans += mp[s];
        }
      }
    }
  }
  cout << ans << endl;
}
0