結果

問題 No.1274 楽しい格子点
ユーザー ygd.ygd.
提出日時 2020-10-30 22:01:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 184,996 KB
最終ジャッジ日時 2024-07-22 00:37:43
合計ジャッジ時間 9,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
52,736 KB
testcase_02 WA -
testcase_03 AC 40 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,224 KB
testcase_06 WA -
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 48 ms
59,776 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 WA -
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 41 ms
52,480 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 41 ms
52,480 KB
testcase_21 AC 42 ms
52,096 KB
testcase_22 AC 274 ms
72,064 KB
testcase_23 AC 962 ms
80,408 KB
testcase_24 AC 457 ms
73,856 KB
testcase_25 AC 234 ms
71,636 KB
testcase_26 AC 58 ms
67,328 KB
testcase_27 AC 58 ms
64,768 KB
testcase_28 AC 116 ms
71,168 KB
testcase_29 AC 56 ms
64,000 KB
testcase_30 AC 223 ms
71,576 KB
testcase_31 AC 40 ms
52,608 KB
testcase_32 AC 49 ms
60,032 KB
testcase_33 AC 117 ms
70,784 KB
testcase_34 AC 48 ms
57,472 KB
testcase_35 AC 74 ms
71,368 KB
testcase_36 AC 364 ms
72,832 KB
testcase_37 AC 53 ms
61,184 KB
testcase_38 AC 45 ms
56,192 KB
testcase_39 AC 76 ms
71,040 KB
testcase_40 AC 104 ms
71,652 KB
testcase_41 AC 70 ms
71,040 KB
testcase_42 AC 40 ms
52,864 KB
testcase_43 AC 39 ms
52,736 KB
testcase_44 AC 41 ms
52,096 KB
testcase_45 AC 47 ms
52,096 KB
testcase_46 AC 40 ms
52,608 KB
testcase_47 AC 41 ms
52,736 KB
testcase_48 AC 42 ms
52,608 KB
testcase_49 AC 39 ms
52,608 KB
testcase_50 AC 40 ms
52,096 KB
testcase_51 AC 39 ms
52,352 KB
testcase_52 WA -
testcase_53 AC 41 ms
52,736 KB
testcase_54 AC 40 ms
52,736 KB
testcase_55 AC 40 ms
51,840 KB
testcase_56 WA -
testcase_57 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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