結果

問題 No.2510 Six Cube Sum Counting
ユーザー 👑 p-adicp-adic
提出日時 2023-10-27 07:27:39
言語 cLay
(20240714-1)
結果
AC  
実行時間 3,703 ms / 4,000 ms
コード長 161 bytes
コンパイル時間 2,604 ms
コンパイル使用メモリ 181,924 KB
実行使用メモリ 174,756 KB
最終ジャッジ日時 2024-09-25 12:55:25
合計ジャッジ時間 108,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,212 ms
174,628 KB
testcase_01 AC 3,246 ms
174,548 KB
testcase_02 AC 3,244 ms
174,628 KB
testcase_03 AC 3,278 ms
174,628 KB
testcase_04 AC 3,255 ms
174,632 KB
testcase_05 AC 3,703 ms
174,628 KB
testcase_06 AC 3,357 ms
174,624 KB
testcase_07 AC 3,415 ms
174,628 KB
testcase_08 AC 3,336 ms
174,628 KB
testcase_09 AC 3,346 ms
174,628 KB
testcase_10 AC 3,398 ms
174,628 KB
testcase_11 AC 3,456 ms
174,628 KB
testcase_12 AC 3,432 ms
174,756 KB
testcase_13 AC 3,359 ms
174,624 KB
testcase_14 AC 3,379 ms
174,628 KB
testcase_15 AC 3,388 ms
174,756 KB
testcase_16 AC 3,287 ms
174,624 KB
testcase_17 AC 3,344 ms
174,632 KB
testcase_18 AC 3,356 ms
174,628 KB
testcase_19 AC 3,319 ms
174,628 KB
testcase_20 AC 3,395 ms
174,632 KB
testcase_21 AC 3,349 ms
174,752 KB
testcase_22 AC 3,319 ms
174,628 KB
testcase_23 AC 3,346 ms
174,752 KB
testcase_24 AC 3,457 ms
174,500 KB
testcase_25 AC 3,336 ms
174,624 KB
testcase_26 AC 3,350 ms
174,720 KB
testcase_27 AC 3,411 ms
174,632 KB
testcase_28 AC 3,430 ms
174,632 KB
testcase_29 AC 3,325 ms
174,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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