結果

問題 No.1593 Perfect Distance
ユーザー RuteRute
提出日時 2021-07-09 21:48:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,096 KB
最終ジャッジ日時 2024-07-01 15:51:20
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
30,948 KB
testcase_01 AC 108 ms
30,992 KB
testcase_02 AC 115 ms
30,996 KB
testcase_03 AC 108 ms
30,868 KB
testcase_04 AC 110 ms
30,872 KB
testcase_05 AC 108 ms
30,944 KB
testcase_06 AC 108 ms
30,952 KB
testcase_07 AC 112 ms
30,936 KB
testcase_08 AC 111 ms
30,956 KB
testcase_09 AC 116 ms
30,992 KB
testcase_10 AC 121 ms
30,868 KB
testcase_11 AC 127 ms
31,096 KB
testcase_12 AC 138 ms
30,996 KB
testcase_13 AC 143 ms
30,952 KB
testcase_14 AC 146 ms
30,996 KB
testcase_15 AC 167 ms
30,868 KB
testcase_16 AC 187 ms
30,992 KB
testcase_17 AC 109 ms
30,996 KB
testcase_18 AC 110 ms
30,868 KB
testcase_19 AC 108 ms
31,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#問題文
#x²+y²=N²を満たすものはいくつありますか?
N = int(input())
ans = 0
ls = []
for i in range(1,200001):
    ls.append(i ** 2)
P = set(ls)
for i in range(1,N):
    if N **2 - i ** 2  in P:        
        ans += 1
print(ans)
0