結果

問題 No.1593 Perfect Distance
ユーザー hiro1729hiro1729
提出日時 2024-09-10 19:12:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 76,152 KB
最終ジャッジ日時 2024-09-10 19:12:27
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 37 ms
51,936 KB
testcase_04 AC 37 ms
52,956 KB
testcase_05 AC 37 ms
52,800 KB
testcase_06 AC 37 ms
52,536 KB
testcase_07 AC 37 ms
52,632 KB
testcase_08 AC 46 ms
61,912 KB
testcase_09 AC 63 ms
73,068 KB
testcase_10 AC 64 ms
75,900 KB
testcase_11 AC 72 ms
75,892 KB
testcase_12 AC 80 ms
75,800 KB
testcase_13 AC 80 ms
76,152 KB
testcase_14 AC 84 ms
75,920 KB
testcase_15 AC 93 ms
76,148 KB
testcase_16 AC 102 ms
75,720 KB
testcase_17 AC 37 ms
53,636 KB
testcase_18 AC 37 ms
53,508 KB
testcase_19 AC 37 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
N = int(input())
c = 0
for x in range(1, N):
	if isqrt(N * N - x * x) ** 2 == N * N - x * x:
		c += 1
print(c)
0