結果

問題 No.152 貯金箱の消失
ユーザー kurimupykurimupy
提出日時 2020-06-21 02:38:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,439 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,776 KB
最終ジャッジ日時 2024-07-03 17:45:39
合計ジャッジ時間 11,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 59 ms
11,264 KB
testcase_05 AC 58 ms
11,264 KB
testcase_06 AC 86 ms
11,520 KB
testcase_07 AC 451 ms
17,108 KB
testcase_08 AC 3,439 ms
47,776 KB
testcase_09 AC 3,249 ms
47,720 KB
testcase_10 AC 2,353 ms
36,204 KB
testcase_11 AC 1,367 ms
24,904 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