結果

問題 No.1274 楽しい格子点
ユーザー ayaoniayaoni
提出日時 2020-10-31 00:41:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 54,724 KB
最終ジャッジ日時 2024-07-22 18:42:44
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,136 KB
testcase_01 AC 37 ms
54,004 KB
testcase_02 AC 38 ms
53,420 KB
testcase_03 AC 38 ms
52,124 KB
testcase_04 AC 38 ms
53,496 KB
testcase_05 AC 38 ms
54,720 KB
testcase_06 AC 35 ms
53,960 KB
testcase_07 AC 34 ms
54,096 KB
testcase_08 AC 32 ms
53,696 KB
testcase_09 AC 33 ms
54,724 KB
testcase_10 AC 34 ms
54,584 KB
testcase_11 AC 34 ms
53,424 KB
testcase_12 AC 33 ms
53,724 KB
testcase_13 AC 33 ms
54,656 KB
testcase_14 AC 33 ms
53,384 KB
testcase_15 AC 35 ms
54,064 KB
testcase_16 AC 32 ms
53,080 KB
testcase_17 AC 33 ms
54,264 KB
testcase_18 AC 33 ms
53,772 KB
testcase_19 AC 33 ms
54,528 KB
testcase_20 AC 32 ms
53,680 KB
testcase_21 AC 32 ms
53,732 KB
testcase_22 AC 33 ms
53,792 KB
testcase_23 AC 33 ms
53,088 KB
testcase_24 AC 33 ms
52,400 KB
testcase_25 AC 33 ms
53,204 KB
testcase_26 AC 35 ms
52,884 KB
testcase_27 AC 33 ms
52,888 KB
testcase_28 AC 33 ms
52,868 KB
testcase_29 AC 32 ms
53,200 KB
testcase_30 AC 32 ms
52,592 KB
testcase_31 AC 30 ms
52,284 KB
testcase_32 AC 31 ms
52,068 KB
testcase_33 AC 32 ms
53,760 KB
testcase_34 AC 31 ms
52,872 KB
testcase_35 AC 31 ms
53,264 KB
testcase_36 AC 37 ms
52,404 KB
testcase_37 AC 37 ms
53,840 KB
testcase_38 AC 33 ms
52,568 KB
testcase_39 AC 31 ms
52,124 KB
testcase_40 AC 32 ms
52,504 KB
testcase_41 AC 33 ms
52,396 KB
testcase_42 AC 31 ms
53,672 KB
testcase_43 AC 32 ms
52,400 KB
testcase_44 AC 32 ms
52,800 KB
testcase_45 AC 33 ms
52,268 KB
testcase_46 AC 34 ms
53,288 KB
testcase_47 AC 34 ms
52,396 KB
testcase_48 AC 34 ms
52,884 KB
testcase_49 AC 33 ms
52,732 KB
testcase_50 AC 32 ms
53,340 KB
testcase_51 AC 31 ms
52,680 KB
testcase_52 AC 31 ms
53,604 KB
testcase_53 AC 33 ms
53,632 KB
testcase_54 AC 33 ms
52,460 KB
testcase_55 AC 36 ms
54,488 KB
testcase_56 AC 32 ms
53,356 KB
testcase_57 AC 31 ms
52,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
def MI(): return map(int,sys.stdin.readline().rstrip().split())


A,B = MI()

if A == B == 0:
    print(1/4)
    exit()

g = gcd(A,B)
A //= g
B //= g

ans = 0
for i in range(20):
    if i % g != 0:
        continue
    x = i//g
    for j in range(20):
        if j % g != 0:
            continue
        y = j//g
        # (1+i,1+j)に辿り着けるか
        if (x-y) % 2 == 0 or (A*B) % 2 == 0:
            ans += 1/((2+i+j)**(2+i+j))

print(ans)
0