結果

問題 No.1593 Perfect Distance
ユーザー detteiuudetteiuu
提出日時 2024-09-23 16:48:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 4,987 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 62,296 KB
最終ジャッジ日時 2024-09-23 16:53:50
合計ジャッジ時間 11,181 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,760 KB
testcase_01 AC 38 ms
52,548 KB
testcase_02 AC 35 ms
52,544 KB
testcase_03 AC 35 ms
52,680 KB
testcase_04 AC 35 ms
52,724 KB
testcase_05 AC 34 ms
53,324 KB
testcase_06 AC 35 ms
53,336 KB
testcase_07 AC 54 ms
52,744 KB
testcase_08 AC 36 ms
52,952 KB
testcase_09 AC 43 ms
61,208 KB
testcase_10 AC 40 ms
59,560 KB
testcase_11 AC 44 ms
61,248 KB
testcase_12 AC 45 ms
61,768 KB
testcase_13 AC 46 ms
61,684 KB
testcase_14 AC 46 ms
60,820 KB
testcase_15 AC 49 ms
62,296 KB
testcase_16 AC 49 ms
60,024 KB
testcase_17 AC 35 ms
52,276 KB
testcase_18 AC 35 ms
52,360 KB
testcase_19 AC 35 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())**2

ans = 0
for x in range(1, int(N**0.5)+1):
    x **= 2
    y = N-x
    if 1 <= y and int(y**0.5)**2 == y:
        ans += 1

print(ans)
0