結果

問題 No.2510 Six Cube Sum Counting
ユーザー Nzt3Nzt3
提出日時 2023-10-20 23:39:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 774 ms / 4,000 ms
コード長 795 bytes
コンパイル時間 2,654 ms
コンパイル使用メモリ 235,496 KB
実行使用メモリ 193,188 KB
最終ジャッジ日時 2024-09-20 23:43:14
合計ジャッジ時間 27,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 751 ms
193,140 KB
testcase_01 AC 747 ms
193,100 KB
testcase_02 AC 745 ms
193,116 KB
testcase_03 AC 733 ms
192,976 KB
testcase_04 AC 760 ms
193,072 KB
testcase_05 AC 744 ms
193,112 KB
testcase_06 AC 751 ms
193,080 KB
testcase_07 AC 760 ms
193,124 KB
testcase_08 AC 734 ms
193,132 KB
testcase_09 AC 752 ms
193,152 KB
testcase_10 AC 762 ms
192,988 KB
testcase_11 AC 743 ms
193,028 KB
testcase_12 AC 747 ms
193,080 KB
testcase_13 AC 763 ms
193,056 KB
testcase_14 AC 774 ms
192,996 KB
testcase_15 AC 760 ms
193,180 KB
testcase_16 AC 746 ms
193,116 KB
testcase_17 AC 737 ms
193,104 KB
testcase_18 AC 757 ms
193,028 KB
testcase_19 AC 731 ms
193,036 KB
testcase_20 AC 743 ms
192,980 KB
testcase_21 AC 736 ms
193,028 KB
testcase_22 AC 731 ms
193,000 KB
testcase_23 AC 739 ms
193,080 KB
testcase_24 AC 729 ms
193,180 KB
testcase_25 AC 745 ms
193,096 KB
testcase_26 AC 740 ms
193,144 KB
testcase_27 AC 734 ms
193,056 KB
testcase_28 AC 746 ms
193,188 KB
testcase_29 AC 739 ms
193,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<ext/pb_ds/hash_policy.hpp>
#include<ext/pb_ds/assoc_container.hpp>
using namespace std;
using ll=long long;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  time_t c=clock();
  int X;
  __gnu_pbds::gp_hash_table<int,int>cntA,cntB;
  cin>>X;
  vector C(301,vector(0,0)),D(301,vector(0,0));
  for(int i=0;i<=300;i++){
    for(int j=i;j<=300;j++){
      for(int k=j;k<=300;k++){
        int t=i*i*i+j*j*j+k*k*k;
        C[k].push_back(t);
        D[i].push_back(t);
      }
    }
  }
  for(int i=0;i<=300;i++){
    for(int j:C[i]){
      cntB[j]+=1;
    }
  }
  int ans=0;
  for(int i=0;i<=300;i++){
    for(int j:C[i]){
      if(cntB.find(X-j)!=cntB.end())ans+=cntB[X-j];
    }
    for(int j:D[i]){
      cntB[j]-=1;
    }
  }
  cout<<ans<<'\n';
}
0