結果

問題 No.2847 Birthday Attack
ユーザー PNJPNJ
提出日時 2024-08-23 22:22:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 327,920 KB
最終ジャッジ日時 2024-08-23 22:23:23
合計ジャッジ時間 47,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,162 ms
296,508 KB
testcase_01 AC 2,143 ms
296,520 KB
testcase_02 AC 2,070 ms
296,696 KB
testcase_03 AC 2,180 ms
296,644 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 WA -
testcase_07 TLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
  while a != 0:
    b %= a
    if b == 0: return a
    a %= b
  return b

P = []
N = 4000000
for m in range(1,N + 1):
  for n in range(1,m):
    if (m - n) % 2 == 0:
      continue
    if gcd(m,n) != 1:
      continue
    if 2 * m * n > N:
      break
    if m * m - n * n > N:
      continue
    a,b,c = m ** 2 - n ** 2,2 * m * n,m ** 2 + n ** 2
    P.append((a,b,c))
    P.append((b,a,c))

X,Y,M = map(int,input().split())
ans = 0
# X
RX = [0 for i in range(X + 1)]
for x in range(2,X):
  r = min(X - x,x - 1)
  RX[1] += 1
  RX[r + 1] -= 1
  ans += r * Y
for i in range(X):
  RX[i + 1] += RX[i]

RY = [0 for i in range(Y + 1)]
for y in range(2,Y):
  r = min(Y - y,y - 1)
  RY[1] += 1
  RY[r + 1] -= 1
  ans += r * X
for i in range(Y):
  RY[i + 1] += RY[i]

for a,b,c in P:
  for i in range(1,min(X,Y) + 1):
    if a * i > X:
      break
    if b * i > Y:
      break
    ans += RX[a * i] * RY[b * i] % M
    ans %= M
ans = ans * 2 % M
print(ans)
0