結果

問題 No.1593 Perfect Distance
ユーザー shinichishinichi
提出日時 2021-07-10 02:47:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 62,040 KB
最終ジャッジ日時 2024-07-01 22:09:42
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,876 KB
testcase_01 AC 40 ms
52,076 KB
testcase_02 AC 41 ms
52,860 KB
testcase_03 AC 38 ms
52,996 KB
testcase_04 AC 38 ms
52,488 KB
testcase_05 AC 38 ms
52,484 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 38 ms
52,496 KB
testcase_08 AC 40 ms
53,196 KB
testcase_09 AC 47 ms
61,428 KB
testcase_10 AC 44 ms
59,880 KB
testcase_11 AC 48 ms
62,040 KB
testcase_12 AC 50 ms
61,764 KB
testcase_13 AC 52 ms
60,660 KB
testcase_14 AC 51 ms
61,544 KB
testcase_15 AC 53 ms
61,372 KB
testcase_16 AC 53 ms
59,672 KB
testcase_17 AC 39 ms
52,504 KB
testcase_18 AC 38 ms
52,940 KB
testcase_19 AC 38 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

cnt = 0
for x in range(1, n+1):
    y = n**2-x**2
    if x**2+y == n**2 and 0 < y and (y**0.5).is_integer():
        cnt += 1
print(cnt)
0