結果

問題 No.152 貯金箱の消失
ユーザー kurimupykurimupy
提出日時 2020-06-21 02:39:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 111,884 KB
最終ジャッジ日時 2024-07-03 17:44:18
合計ジャッジ時間 2,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 45 ms
60,416 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 44 ms
60,288 KB
testcase_04 AC 61 ms
66,560 KB
testcase_05 AC 55 ms
66,688 KB
testcase_06 AC 57 ms
69,248 KB
testcase_07 AC 91 ms
79,992 KB
testcase_08 AC 318 ms
107,860 KB
testcase_09 AC 328 ms
111,884 KB
testcase_10 AC 262 ms
102,148 KB
testcase_11 AC 165 ms
89,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
from math import gcd
N = L//4
# (x,y,z)=(2MN,M**2-N**2,M**2+N**2)
# SUM=2M(M+N)
N = N//2
A = set()
for i in range(1, N+1):
    if i**2 > N:
        break
    else:
        for j in range(1, N//i+1):
            if i < j:
                m = i
                n = j-i
                if m > n > 0:
                    P = [2*m*n, m**2-n**2, m**2+n**2]
                    P.sort()
                    if gcd(P[0],gcd(P[1],P[2]))==1:
                        A.add(tuple(P))
print(len(A))
0