結果

問題 No.1274 楽しい格子点
ユーザー ygd.ygd.
提出日時 2020-10-30 23:15:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 75,980 KB
最終ジャッジ日時 2024-07-22 02:57:44
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 78 ms
75,784 KB
testcase_02 WA -
testcase_03 AC 177 ms
75,964 KB
testcase_04 WA -
testcase_05 AC 69 ms
75,564 KB
testcase_06 WA -
testcase_07 AC 70 ms
75,760 KB
testcase_08 AC 39 ms
52,128 KB
testcase_09 AC 69 ms
75,656 KB
testcase_10 AC 67 ms
75,668 KB
testcase_11 WA -
testcase_12 AC 69 ms
75,692 KB
testcase_13 AC 68 ms
75,784 KB
testcase_14 WA -
testcase_15 AC 71 ms
75,636 KB
testcase_16 AC 69 ms
75,784 KB
testcase_17 AC 69 ms
75,568 KB
testcase_18 AC 69 ms
75,904 KB
testcase_19 AC 69 ms
75,612 KB
testcase_20 AC 69 ms
75,564 KB
testcase_21 AC 70 ms
75,700 KB
testcase_22 AC 39 ms
52,948 KB
testcase_23 AC 39 ms
53,068 KB
testcase_24 AC 40 ms
52,444 KB
testcase_25 AC 40 ms
52,392 KB
testcase_26 AC 40 ms
52,468 KB
testcase_27 AC 40 ms
53,640 KB
testcase_28 AC 40 ms
53,012 KB
testcase_29 AC 39 ms
52,596 KB
testcase_30 AC 40 ms
52,716 KB
testcase_31 AC 40 ms
52,472 KB
testcase_32 AC 39 ms
53,172 KB
testcase_33 AC 40 ms
53,004 KB
testcase_34 AC 40 ms
52,452 KB
testcase_35 AC 39 ms
52,756 KB
testcase_36 AC 39 ms
53,084 KB
testcase_37 AC 40 ms
52,508 KB
testcase_38 AC 39 ms
52,760 KB
testcase_39 AC 40 ms
53,848 KB
testcase_40 AC 39 ms
52,256 KB
testcase_41 AC 40 ms
53,356 KB
testcase_42 AC 117 ms
75,620 KB
testcase_43 AC 115 ms
75,964 KB
testcase_44 AC 179 ms
75,660 KB
testcase_45 AC 156 ms
75,748 KB
testcase_46 AC 154 ms
75,756 KB
testcase_47 AC 40 ms
52,616 KB
testcase_48 AC 176 ms
75,632 KB
testcase_49 AC 72 ms
75,572 KB
testcase_50 AC 154 ms
75,584 KB
testcase_51 AC 40 ms
53,080 KB
testcase_52 AC 40 ms
53,428 KB
testcase_53 AC 88 ms
75,980 KB
testcase_54 AC 132 ms
75,852 KB
testcase_55 AC 69 ms
75,672 KB
testcase_56 WA -
testcase_57 AC 40 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A,B = map(int,input().split())
A = abs(A); B = abs(B)
if A == 0 and B == 0:
  ans = 0.25; print(ans); exit()
MAX = 100

ans = 0
if A == B:
  if A >= 10:
    MAX = 1
  for y in range(MAX):
    for x in range(MAX):
      if y%2 == 0:
        kx = 1 + 2*A*x
        ky = 1 + A*y
      else:
        kx = 1 + 2*A*x + A
        ky = 1 + A*y
      temp = 1/pow(kx+ky,kx+ky)
      #print(x,y,kx,ky,temp)
      ans += temp
  print(ans);exit()
  
k = math.gcd(A,B)
#print(k) 片方ゼロならゼロではない数字がk
if k >= 10:
  MAX = 1
ans = 0
for y in range(MAX):
  for x in range(MAX):
    kx = 1 + k*x
    ky = 1 + k*y
    temp = 1/pow(kx+ky,kx+ky)
    #print(kx,ky,temp)
    ans += temp
print(ans)
0