結果

問題 No.1274 楽しい格子点
ユーザー ygd.ygd.
提出日時 2020-10-30 22:04:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 183,168 KB
最終ジャッジ日時 2024-07-22 00:40:23
合計ジャッジ時間 7,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
52,480 KB
testcase_02 WA -
testcase_03 AC 41 ms
52,608 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 45 ms
52,352 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 42 ms
52,352 KB
testcase_19 AC 42 ms
52,480 KB
testcase_20 WA -
testcase_21 AC 42 ms
52,096 KB
testcase_22 AC 45 ms
53,248 KB
testcase_23 AC 51 ms
59,520 KB
testcase_24 AC 46 ms
55,168 KB
testcase_25 AC 45 ms
53,504 KB
testcase_26 AC 42 ms
52,480 KB
testcase_27 AC 59 ms
64,640 KB
testcase_28 AC 46 ms
52,864 KB
testcase_29 AC 42 ms
52,352 KB
testcase_30 AC 233 ms
71,788 KB
testcase_31 AC 42 ms
52,352 KB
testcase_32 AC 43 ms
52,480 KB
testcase_33 AC 42 ms
52,736 KB
testcase_34 AC 42 ms
52,096 KB
testcase_35 AC 43 ms
52,608 KB
testcase_36 AC 46 ms
54,528 KB
testcase_37 AC 42 ms
51,840 KB
testcase_38 AC 42 ms
52,224 KB
testcase_39 AC 42 ms
52,352 KB
testcase_40 AC 42 ms
52,096 KB
testcase_41 AC 42 ms
52,224 KB
testcase_42 AC 41 ms
52,992 KB
testcase_43 AC 41 ms
51,968 KB
testcase_44 AC 41 ms
52,224 KB
testcase_45 AC 41 ms
52,864 KB
testcase_46 AC 40 ms
52,864 KB
testcase_47 AC 41 ms
52,864 KB
testcase_48 AC 43 ms
52,480 KB
testcase_49 AC 42 ms
52,352 KB
testcase_50 AC 43 ms
52,352 KB
testcase_51 AC 42 ms
52,480 KB
testcase_52 WA -
testcase_53 AC 42 ms
52,736 KB
testcase_54 AC 41 ms
52,480 KB
testcase_55 AC 41 ms
52,480 KB
testcase_56 WA -
testcase_57 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A,B = map(int,input().split())
MAX = 10
if A >= pow(10,9) or B >= pow(10,9):
  MAX = 3
ans = 0
if abs(A) == abs(B):
  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)
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