結果

問題 No.1593 Perfect Distance
ユーザー ntudantuda
提出日時 2021-07-22 14:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 93,488 KB
最終ジャッジ日時 2024-07-17 14:45:25
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,252 KB
testcase_01 AC 37 ms
51,892 KB
testcase_02 AC 37 ms
52,952 KB
testcase_03 AC 38 ms
52,648 KB
testcase_04 AC 37 ms
52,908 KB
testcase_05 AC 36 ms
52,952 KB
testcase_06 AC 36 ms
52,868 KB
testcase_07 AC 38 ms
52,196 KB
testcase_08 AC 37 ms
52,948 KB
testcase_09 AC 44 ms
61,144 KB
testcase_10 AC 46 ms
64,028 KB
testcase_11 AC 52 ms
67,696 KB
testcase_12 AC 60 ms
72,452 KB
testcase_13 AC 57 ms
73,352 KB
testcase_14 AC 62 ms
75,844 KB
testcase_15 AC 72 ms
82,572 KB
testcase_16 AC 80 ms
93,488 KB
testcase_17 AC 37 ms
51,964 KB
testcase_18 AC 37 ms
53,076 KB
testcase_19 AC 37 ms
53,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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