結果

問題 No.2847 Birthday Attack
ユーザー 👑 rin204rin204
提出日時 2024-08-23 22:30:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 294,688 KB
最終ジャッジ日時 2024-08-23 22:30:32
合計ジャッジ時間 7,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
66,384 KB
testcase_01 AC 71 ms
60,764 KB
testcase_02 AC 66 ms
59,756 KB
testcase_03 AC 2,034 ms
294,688 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

x, y, MOD = map(int, input().split())
ans = 0
lst = []
for n in range(1, 4000000):
    for m in range(n + 1, 4000000):
        a = m * m - n * n
        b = 2 * m * n
        c = m * m + n * n

        if b > max(x, y):
            break

        if gcd(a, b, c) == 1:
            lst.append((a, b, c))

ans = 0

ox = x // 2
ex = x - ox
oy = y // 2
ey = y - oy

ans += ox * (ox - 1) // 2 * y
ans += ex * (ex - 1) // 2 * y
ans += oy * (oy - 1) // 2 * x
ans += ey * (ey - 1) // 2 * x
ans %= MOD
print(2 * ans % MOD)
exit()

for a, b, c in lst:
    k = min(x // a, y // b)
    for i in range(1, k + 1):
        ans += (x - a * i) * (y - b * i) % MOD

    k = min(x // b, y // a)
    for i in range(1, k + 1):
        ans += (x - b * i) * (y - a * i) % MOD
    ans %= MOD

ans *= 2
print(ans % MOD)
0