結果

問題 No.1593 Perfect Distance
ユーザー teepeeteeteepeetee
提出日時 2021-07-18 15:27:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,876 KB
最終ジャッジ日時 2024-07-08 09:10:35
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
27,864 KB
testcase_01 AC 130 ms
27,712 KB
testcase_02 AC 138 ms
27,696 KB
testcase_03 AC 132 ms
27,656 KB
testcase_04 AC 134 ms
27,824 KB
testcase_05 AC 131 ms
27,648 KB
testcase_06 AC 142 ms
27,700 KB
testcase_07 AC 134 ms
27,668 KB
testcase_08 AC 133 ms
27,732 KB
testcase_09 AC 137 ms
27,828 KB
testcase_10 AC 136 ms
27,528 KB
testcase_11 AC 138 ms
27,736 KB
testcase_12 AC 136 ms
27,740 KB
testcase_13 AC 139 ms
27,636 KB
testcase_14 AC 140 ms
27,740 KB
testcase_15 AC 142 ms
27,696 KB
testcase_16 AC 137 ms
27,664 KB
testcase_17 AC 131 ms
27,720 KB
testcase_18 AC 129 ms
27,704 KB
testcase_19 AC 135 ms
27,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xx = {i**2 for i in range(1,200001)}
ans=0

for i in range(1,200001):
    if n**2-i**2 in xx:
        ans+=1
print(ans)
0