結果

問題 No.152 貯金箱の消失
ユーザー takakintakakin
提出日時 2020-07-12 20:37:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,352 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,296 KB
最終ジャッジ日時 2024-11-06 02:25:54
合計ジャッジ時間 9,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 56 ms
11,136 KB
testcase_05 AC 58 ms
11,008 KB
testcase_06 AC 78 ms
11,008 KB
testcase_07 AC 392 ms
14,208 KB
testcase_08 AC 2,328 ms
30,284 KB
testcase_09 AC 2,352 ms
30,296 KB
testcase_10 AC 1,810 ms
21,156 KB
testcase_11 AC 1,022 ms
16,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
nn=int(n**0.5)+1
A=set()
def gcd(a,b):
  while b:
    a,b=b,a%b
  return a
for i in range(1,nn):
	for j in range(i+1,nn):
		if 8*j*(i+j)<=n:
			a,b=j**2-i**2,2*i*j
			if a>b:
				a,b=b,a
			a,b=a//gcd(a,b),b//gcd(a,b)
			A.add(a*10**8+b)
print(len(A))
0