結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 p-adicp-adic
提出日時 2023-10-27 00:59:18
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 181,016 KB
実行使用メモリ 174,760 KB
最終ジャッジ日時 2024-09-25 12:42:01
合計ジャッジ時間 117,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,697 ms
174,628 KB
testcase_01 AC 3,653 ms
174,716 KB
testcase_02 WA -
testcase_03 AC 3,625 ms
174,624 KB
testcase_04 AC 3,662 ms
174,752 KB
testcase_05 AC 3,691 ms
174,760 KB
testcase_06 AC 3,664 ms
174,628 KB
testcase_07 AC 3,691 ms
174,628 KB
testcase_08 AC 3,641 ms
174,628 KB
testcase_09 AC 3,602 ms
174,756 KB
testcase_10 AC 3,664 ms
174,760 KB
testcase_11 AC 3,585 ms
174,624 KB
testcase_12 AC 3,681 ms
174,548 KB
testcase_13 AC 3,599 ms
174,632 KB
testcase_14 AC 3,646 ms
174,632 KB
testcase_15 AC 3,619 ms
174,756 KB
testcase_16 AC 3,638 ms
174,756 KB
testcase_17 AC 3,650 ms
174,732 KB
testcase_18 AC 3,646 ms
174,756 KB
testcase_19 AC 3,677 ms
174,756 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 3,636 ms
174,632 KB
testcase_26 AC 3,884 ms
174,628 KB
testcase_27 AC 3,751 ms
174,632 KB
testcase_28 AC 3,622 ms
174,752 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

int@X,L=301,M=L+1,A=0;ll s;unordered_map<int,ll>t;rep(a,L)rep(b,a,L)rep(c,b,L)(t[a**3+b**3+c**3]*=M)+=c+1;rep(d,L)rep(e,d,L)rep(f,e,L){if(t.count(s=X-d**3-e**3-f**3)){s=t[s];while(s)d>=s%M-1?++A:A,s/=M;}}wt(A);
0