結果

問題 No.1593 Perfect Distance
ユーザー とりゐとりゐ
提出日時 2021-07-10 15:11:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,272 KB
最終ジャッジ日時 2024-07-02 02:28:45
合計ジャッジ時間 1,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,516 KB
testcase_01 AC 39 ms
52,156 KB
testcase_02 AC 40 ms
52,160 KB
testcase_03 AC 42 ms
52,548 KB
testcase_04 AC 39 ms
52,668 KB
testcase_05 AC 39 ms
52,808 KB
testcase_06 AC 39 ms
52,748 KB
testcase_07 AC 37 ms
53,028 KB
testcase_08 AC 45 ms
61,020 KB
testcase_09 AC 59 ms
69,924 KB
testcase_10 AC 59 ms
75,844 KB
testcase_11 AC 67 ms
76,120 KB
testcase_12 AC 71 ms
75,968 KB
testcase_13 AC 74 ms
76,272 KB
testcase_14 AC 75 ms
76,084 KB
testcase_15 AC 82 ms
76,140 KB
testcase_16 AC 79 ms
76,100 KB
testcase_17 AC 38 ms
52,664 KB
testcase_18 AC 38 ms
53,084 KB
testcase_19 AC 38 ms
53,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_square(n):
  if n<0:
    return False
  a=int(n**0.5)
  for i in range(max(0,a-1),a+2):
    if i**2==n:
      return True
  return False

n=int(input())
ans=0
for i in range(1,n):
  if is_square(n**2-i**2):
    ans+=1
print(ans)
0