結果

問題 No.2510 Six Cube Sum Counting
ユーザー Nzt3Nzt3
提出日時 2023-10-21 00:08:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 715 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 205,072 KB
実行使用メモリ 119,552 KB
最終ジャッジ日時 2024-09-21 00:33:52
合計ジャッジ時間 15,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
119,296 KB
testcase_01 AC 194 ms
119,424 KB
testcase_02 AC 237 ms
119,296 KB
testcase_03 AC 245 ms
119,424 KB
testcase_04 AC 242 ms
119,424 KB
testcase_05 AC 256 ms
119,424 KB
testcase_06 AC 276 ms
119,424 KB
testcase_07 AC 261 ms
119,424 KB
testcase_08 AC 272 ms
119,424 KB
testcase_09 AC 260 ms
119,424 KB
testcase_10 AC 264 ms
119,424 KB
testcase_11 AC 270 ms
119,424 KB
testcase_12 AC 270 ms
119,552 KB
testcase_13 AC 265 ms
119,424 KB
testcase_14 AC 269 ms
119,424 KB
testcase_15 AC 244 ms
119,552 KB
testcase_16 AC 250 ms
119,424 KB
testcase_17 AC 191 ms
119,424 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 312 ms
119,424 KB
testcase_21 AC 334 ms
119,424 KB
testcase_22 AC 287 ms
119,424 KB
testcase_23 AC 284 ms
119,424 KB
testcase_24 AC 301 ms
119,424 KB
testcase_25 AC 290 ms
119,424 KB
testcase_26 AC 294 ms
119,424 KB
testcase_27 AC 293 ms
119,424 KB
testcase_28 AC 273 ms
119,296 KB
testcase_29 AC 298 ms
119,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
char cntA[300*300*300*3+1];
char cntB[300*300*300*3+1];

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  time_t c=clock();
  int X;
  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(X-j>=0)
      ans+=cntB[X-j];
    }
    for(int j:D[i]){
      cntB[j]-=1;
    }
  }
  cout<<ans<<'\n';
}
0