結果

問題 No.2187 三立法和 mod 333
ユーザー sepa38sepa38
提出日時 2023-01-13 22:23:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 824 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,108 KB
最終ジャッジ日時 2024-06-06 23:10:00
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
ls = [[] for i in range(333)]
for i in range(1, 4444):
  x = i ** 3
  ls[x%333].append(x*i)
lim = 4444 ** 4
ans = 0
a = int(input())
e3 = [i**3 for i in range(4445)]
e4 = [i**4 for i in range(4445)]
for i in range(1, 4444):
  s3 = e3[i] + e3[i]
  k = (a - s3) % 333
  s4 = e4[i] + e4[i]
  cnt = bisect.bisect_right(ls[k], lim-s4) - bisect.bisect_left(ls[k], e4[i])
  cnt = max(cnt, 0)
  ans += cnt * 3
  if (e3[i] * 3) % 333 == a and (e4[i] * 3) <= lim:
    ans -= 2
  for j in range(i+1, 4444):
    s3 = e3[i] + e3[j]
    k = (a - s3) % 333
    s4 = e4[i] + e4[j]
    if s4 > lim:
      break
    cnt = bisect.bisect_right(ls[k], lim-s4) - bisect.bisect_left(ls[k], e4[j])
    cnt = max(cnt, 0)
    ans += cnt * 6
    if (e3[i] + e3[j] * 2) % 333 == a and (e4[i] + e4[j] * 2) <= lim:
      ans -= 3
print(ans)
0