結果

問題 No.2510 Six Cube Sum Counting
ユーザー tnakao0123tnakao0123
提出日時 2024-06-20 10:53:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,094 ms / 4,000 ms
コード長 1,185 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 72,284 KB
実行使用メモリ 299,352 KB
最終ジャッジ日時 2024-06-20 10:55:02
合計ジャッジ時間 59,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 2,120 ms
190,536 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 3,021 ms
292,440 KB
testcase_07 AC 3,040 ms
299,348 KB
testcase_08 AC 3,036 ms
296,408 KB
testcase_09 AC 2,957 ms
299,224 KB
testcase_10 AC 3,018 ms
299,220 KB
testcase_11 AC 2,970 ms
298,844 KB
testcase_12 AC 3,022 ms
298,968 KB
testcase_13 AC 3,068 ms
299,224 KB
testcase_14 AC 3,044 ms
298,840 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 12 ms
6,940 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 3,079 ms
299,224 KB
testcase_19 AC 3,089 ms
299,352 KB
testcase_20 AC 1,111 ms
92,788 KB
testcase_21 AC 2,181 ms
198,312 KB
testcase_22 AC 1,725 ms
145,100 KB
testcase_23 AC 1,479 ms
127,528 KB
testcase_24 AC 2,075 ms
183,884 KB
testcase_25 AC 3,071 ms
298,712 KB
testcase_26 AC 2,963 ms
278,104 KB
testcase_27 AC 2,236 ms
206,920 KB
testcase_28 AC 3,094 ms
299,352 KB
testcase_29 AC 1,866 ms
163,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2510.cc:  No.2510 Six Cube Sum Counting - yukicoder
 */

#include<cstdio>
#include<map>
#include<unordered_map>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_A = 300;
const int BN = 9 * 10;

/* typedef */

using mii = map<int,__int128>;
using umii = unordered_map<int,__int128>;

/* global variables */

/* subroutines */

/* main */

int main() {
  int x;
  scanf("%d", &x);

  __int128 msk = (1 << 9) - 1;
  umii scs;

  int cnt = 0;
  for (int a = 0; a <= MAX_A; a++) {
    int a3 = a * a * a;
    for (int b = a; b <= MAX_A; b++) {
      int b3 = b * b * b;
      for (int c = b; c <= MAX_A; c++) {
	int s = a3 + b3 + c * c * c;

	if (s * 2 <= x) {
	  auto mit = scs.find(s);
	  if (mit == scs.end()) {
	    __int128 bt = ~msk | c;
	    scs[s] = bt;
	  }
	  else {
	    mit->second = (mit->second << 9) | c;
	  }
	}

	if (x >= s && s * 2 >= x) {
	  auto mit = scs.find(x - s);
	  if (mit != scs.end()) {
	    __int128 bt = mit->second;
	    for (;;) {
	      int c = bt & msk;
	      if (c == msk) break;
	      if (c <= a) cnt++;
	      bt >>= 9;
	    }
	  }
	}
      }
    }
  }

  printf("%d\n", cnt);
  
  return 0;
}
0