結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,232 KB
testcase_01 AC 37 ms
51,856 KB
testcase_02 AC 38 ms
52,916 KB
testcase_03 AC 36 ms
53,512 KB
testcase_04 AC 38 ms
52,376 KB
testcase_05 AC 37 ms
52,624 KB
testcase_06 AC 38 ms
52,876 KB
testcase_07 AC 38 ms
52,888 KB
testcase_08 AC 44 ms
60,100 KB
testcase_09 AC 54 ms
70,224 KB
testcase_10 AC 57 ms
76,036 KB
testcase_11 AC 64 ms
76,172 KB
testcase_12 AC 68 ms
75,836 KB
testcase_13 AC 69 ms
75,832 KB
testcase_14 AC 72 ms
76,184 KB
testcase_15 AC 76 ms
75,916 KB
testcase_16 AC 79 ms
76,016 KB
testcase_17 AC 37 ms
52,068 KB
testcase_18 AC 38 ms
52,212 KB
testcase_19 AC 38 ms
54,296 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