結果

問題 No.1593 Perfect Distance
ユーザー toyuzukotoyuzuko
提出日時 2021-07-09 21:25:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 93,324 KB
最終ジャッジ日時 2024-07-01 15:05:16
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,392 KB
testcase_01 AC 39 ms
53,508 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
52,108 KB
testcase_04 AC 38 ms
53,084 KB
testcase_05 AC 37 ms
52,080 KB
testcase_06 AC 37 ms
53,060 KB
testcase_07 AC 37 ms
52,140 KB
testcase_08 AC 38 ms
52,568 KB
testcase_09 AC 45 ms
61,536 KB
testcase_10 AC 48 ms
63,216 KB
testcase_11 AC 52 ms
67,976 KB
testcase_12 AC 59 ms
73,132 KB
testcase_13 AC 59 ms
73,696 KB
testcase_14 AC 63 ms
76,092 KB
testcase_15 AC 80 ms
82,128 KB
testcase_16 AC 83 ms
93,324 KB
testcase_17 AC 37 ms
52,076 KB
testcase_18 AC 37 ms
52,876 KB
testcase_19 AC 38 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

sq_list = [i**2 for i in range(1, N)]
sq_list = set(sq_list)

res = 0

for x in range(1, N):
    yy = N**2 - x**2
    if yy in sq_list:
        res += 1

print(res)
0