結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 p-adicp-adic
提出日時 2023-10-27 01:41:20
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 182,248 KB
実行使用メモリ 174,764 KB
最終ジャッジ日時 2024-09-25 12:51:30
合計ジャッジ時間 12,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,611 ms
174,756 KB
testcase_01 AC 3,604 ms
174,632 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 AC 3,611 ms
174,628 KB
testcase_05 AC 3,633 ms
174,756 KB
testcase_06 WA -
testcase_07 AC 3,608 ms
174,732 KB
testcase_08 WA -
testcase_09 AC 3,635 ms
174,756 KB
testcase_10 AC 3,647 ms
174,756 KB
testcase_11 AC 3,661 ms
174,628 KB
testcase_12 AC 3,665 ms
174,760 KB
testcase_13 AC 3,617 ms
174,756 KB
testcase_14 AC 3,655 ms
174,752 KB
testcase_15 AC 3,599 ms
174,628 KB
testcase_16 AC 3,605 ms
174,764 KB
testcase_17 AC 3,599 ms
174,628 KB
testcase_18 AC 3,638 ms
174,756 KB
testcase_19 AC 3,637 ms
174,632 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 3,627 ms
174,632 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 3,606 ms
174,752 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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