結果

問題 No.2847 Birthday Attack
ユーザー 👑 seekworserseekworser
提出日時 2024-07-09 23:03:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 3,000 ms
コード長 780 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2024-07-09 23:03:29
合計ジャッジ時間 6,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 169 ms
75,904 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 545 ms
76,032 KB
testcase_06 AC 305 ms
76,032 KB
testcase_07 AC 496 ms
76,416 KB
testcase_08 AC 190 ms
76,160 KB
testcase_09 AC 353 ms
76,288 KB
testcase_10 AC 270 ms
76,416 KB
testcase_11 AC 293 ms
76,288 KB
testcase_12 AC 486 ms
76,416 KB
testcase_13 AC 543 ms
76,288 KB
testcase_14 AC 388 ms
76,288 KB
testcase_15 AC 424 ms
76,160 KB
testcase_16 AC 338 ms
76,536 KB
testcase_17 AC 429 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


x,y,md = map(int, input().split())

ans = 0
mx = max(x, y) // 2 + 1
for m in range(0, mx+1):
    for n in range(m+1, mx+1):
        if (m % 2 == n % 2) or gcd(m, n) != 1: continue
        ai = n*n - m*m
        bi = 2*m*n
        if (ai > mx) or (bi > mx): break
        mul = 1
        while (mul * max(ai, bi) <= mx):
            a = ai*mul
            b = bi*mul
            if a*2 < x and b*2 < y:
                if (b == 0): ans = (ans + (x - 2*a) * (y - 2*b) * 2) % md
                else: ans = (ans + (x - 2*a) * (y - 2*b) * 4) % md
            if b*2 < x and a*2 < y:
                if (b == 0): ans = (ans + (x - 2*b) * (y - 2*a) * 2) % md
                else: ans = (ans + (x - 2*b) * (y - 2*a) * 4) % md
            mul += 1
print(ans % md)
0