結果

問題 No.1593 Perfect Distance
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-11 18:22:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,836 KB
最終ジャッジ日時 2024-07-02 03:10:30
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
30,748 KB
testcase_01 AC 179 ms
30,624 KB
testcase_02 AC 177 ms
30,640 KB
testcase_03 AC 167 ms
30,748 KB
testcase_04 AC 167 ms
30,620 KB
testcase_05 AC 177 ms
30,616 KB
testcase_06 AC 178 ms
30,836 KB
testcase_07 AC 176 ms
30,492 KB
testcase_08 AC 177 ms
30,756 KB
testcase_09 AC 183 ms
30,620 KB
testcase_10 AC 179 ms
30,752 KB
testcase_11 AC 181 ms
30,628 KB
testcase_12 AC 180 ms
30,752 KB
testcase_13 AC 182 ms
30,496 KB
testcase_14 AC 181 ms
30,624 KB
testcase_15 AC 184 ms
30,620 KB
testcase_16 AC 181 ms
30,620 KB
testcase_17 AC 171 ms
30,620 KB
testcase_18 AC 168 ms
30,624 KB
testcase_19 AC 174 ms
30,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

heiho = set([i ** 2 for i in range(1, 200010)])
n = int(input())
ans = 0
for i in range(1, 200010):
    if n ** 2 - i ** 2 in heiho:
        ans += 1
print(ans)
0