結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | maksim |
提出日時 | 2023-10-20 21:41:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 839 bytes |
コンパイル時間 | 1,859 ms |
コンパイル使用メモリ | 180,296 KB |
実行使用メモリ | 371,736 KB |
最終ジャッジ日時 | 2024-09-20 17:58:07 |
合計ジャッジ時間 | 20,735 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3,448 ms
371,608 KB |
testcase_01 | AC | 3,464 ms
371,728 KB |
testcase_02 | AC | 3,681 ms
371,604 KB |
testcase_03 | AC | 3,433 ms
371,572 KB |
testcase_04 | AC | 3,451 ms
371,600 KB |
testcase_05 | AC | 3,479 ms
371,604 KB |
testcase_06 | AC | 3,428 ms
371,736 KB |
testcase_07 | AC | 3,577 ms
371,608 KB |
testcase_08 | AC | 3,503 ms
371,732 KB |
testcase_09 | AC | 3,523 ms
371,604 KB |
testcase_10 | AC | 3,511 ms
371,728 KB |
testcase_11 | AC | 3,515 ms
371,608 KB |
testcase_12 | AC | 3,465 ms
371,476 KB |
testcase_13 | AC | 3,484 ms
371,472 KB |
testcase_14 | AC | 3,473 ms
371,604 KB |
testcase_15 | AC | 3,483 ms
371,476 KB |
testcase_16 | AC | 3,554 ms
371,732 KB |
testcase_17 | AC | 3,479 ms
371,600 KB |
testcase_18 | AC | 3,488 ms
371,480 KB |
testcase_19 | AC | 3,557 ms
371,728 KB |
testcase_20 | AC | 3,773 ms
371,732 KB |
testcase_21 | AC | 3,816 ms
371,604 KB |
testcase_22 | AC | 3,921 ms
371,600 KB |
testcase_23 | TLE | - |
testcase_24 | AC | 3,793 ms
371,604 KB |
testcase_25 | AC | 3,519 ms
371,604 KB |
testcase_26 | AC | 3,540 ms
371,736 KB |
testcase_27 | AC | 3,538 ms
371,604 KB |
testcase_28 | AC | 3,374 ms
371,604 KB |
testcase_29 | AC | 3,719 ms
371,676 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; bitset<81000001> ok; unordered_map<int,vector<short> > u; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); for(int i=0;i<=300;++i) { for(int e=i;e<=300;++e) { for(int f=e;f<=300;++f) { ok[i*i*i+e*e*e+f*f*f]=1; u[i*i*i+e*e*e+f*f*f].push_back(i); } } } int x;cin>>x; int res=0; for(int a=0;a<=300;++a) { for(int b=a;b<=300;++b) { for(int c=b;c<=300;++c) { int rem=x-a*a*a-b*b*b-c*c*c; if(rem<0 || rem>=81000001 || !ok[rem]) continue; res+=u[rem].end()-lower_bound(u[rem].begin(),u[rem].end(),c); } } } cout<<res; return 0; }