結果

問題 No.1274 楽しい格子点
ユーザー 👑 KazunKazun
提出日時 2020-10-30 23:25:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 72,020 KB
最終ジャッジ日時 2024-07-22 03:06:33
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,364 KB
testcase_01 AC 39 ms
52,560 KB
testcase_02 WA -
testcase_03 AC 39 ms
53,328 KB
testcase_04 WA -
testcase_05 AC 39 ms
51,996 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,132 KB
testcase_08 AC 39 ms
53,812 KB
testcase_09 AC 40 ms
52,400 KB
testcase_10 AC 39 ms
52,424 KB
testcase_11 WA -
testcase_12 AC 39 ms
53,312 KB
testcase_13 AC 39 ms
53,372 KB
testcase_14 WA -
testcase_15 AC 38 ms
53,316 KB
testcase_16 AC 38 ms
53,144 KB
testcase_17 AC 39 ms
52,524 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 39 ms
53,020 KB
testcase_20 AC 39 ms
51,884 KB
testcase_21 AC 39 ms
52,124 KB
testcase_22 AC 39 ms
53,356 KB
testcase_23 AC 39 ms
52,460 KB
testcase_24 AC 39 ms
52,448 KB
testcase_25 AC 39 ms
52,448 KB
testcase_26 AC 39 ms
52,900 KB
testcase_27 AC 39 ms
52,696 KB
testcase_28 AC 39 ms
53,620 KB
testcase_29 AC 39 ms
53,552 KB
testcase_30 AC 38 ms
52,628 KB
testcase_31 AC 38 ms
52,000 KB
testcase_32 AC 39 ms
52,448 KB
testcase_33 AC 39 ms
52,532 KB
testcase_34 AC 39 ms
54,072 KB
testcase_35 AC 39 ms
53,920 KB
testcase_36 AC 39 ms
52,772 KB
testcase_37 AC 39 ms
53,224 KB
testcase_38 AC 39 ms
53,616 KB
testcase_39 AC 39 ms
53,028 KB
testcase_40 AC 39 ms
53,244 KB
testcase_41 AC 38 ms
53,080 KB
testcase_42 AC 38 ms
53,404 KB
testcase_43 AC 39 ms
53,888 KB
testcase_44 AC 39 ms
52,952 KB
testcase_45 AC 39 ms
53,080 KB
testcase_46 AC 38 ms
54,148 KB
testcase_47 AC 39 ms
52,464 KB
testcase_48 AC 39 ms
52,952 KB
testcase_49 AC 39 ms
52,220 KB
testcase_50 AC 39 ms
52,900 KB
testcase_51 AC 39 ms
53,060 KB
testcase_52 AC 38 ms
52,800 KB
testcase_53 AC 38 ms
53,468 KB
testcase_54 AC 38 ms
53,260 KB
testcase_55 AC 39 ms
52,348 KB
testcase_56 WA -
testcase_57 AC 93 ms
72,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
A,B=map(int,input().split())
if A==B==0:
    print(0.25)
else:
    g=gcd(A,B);X=0
    T=8*(g<=20)+2
    F=(A//g)%2*(B//g)%2
    for k in range(0,T,F+1):
        h=(F+1)*k*g+2
        X+=((F+1)*k+1)/(h**h)
    print(X)
0