結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 38 ms
53,420 KB
testcase_02 WA -
testcase_03 AC 38 ms
54,032 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,944 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,528 KB
testcase_08 AC 39 ms
53,844 KB
testcase_09 AC 37 ms
52,660 KB
testcase_10 AC 39 ms
53,328 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,944 KB
testcase_13 AC 38 ms
52,540 KB
testcase_14 WA -
testcase_15 AC 38 ms
53,924 KB
testcase_16 AC 38 ms
52,592 KB
testcase_17 AC 38 ms
52,888 KB
testcase_18 AC 38 ms
53,748 KB
testcase_19 AC 38 ms
52,592 KB
testcase_20 AC 38 ms
52,784 KB
testcase_21 AC 38 ms
52,532 KB
testcase_22 AC 39 ms
53,404 KB
testcase_23 AC 38 ms
53,500 KB
testcase_24 AC 39 ms
53,616 KB
testcase_25 AC 38 ms
52,696 KB
testcase_26 AC 38 ms
52,312 KB
testcase_27 AC 38 ms
52,540 KB
testcase_28 AC 38 ms
52,372 KB
testcase_29 AC 38 ms
52,720 KB
testcase_30 AC 39 ms
52,656 KB
testcase_31 AC 39 ms
52,248 KB
testcase_32 AC 39 ms
52,312 KB
testcase_33 AC 39 ms
53,048 KB
testcase_34 AC 39 ms
52,252 KB
testcase_35 AC 39 ms
52,128 KB
testcase_36 AC 38 ms
52,996 KB
testcase_37 AC 38 ms
53,472 KB
testcase_38 AC 38 ms
53,120 KB
testcase_39 AC 39 ms
53,064 KB
testcase_40 AC 38 ms
53,052 KB
testcase_41 AC 38 ms
52,656 KB
testcase_42 AC 39 ms
52,000 KB
testcase_43 AC 38 ms
52,332 KB
testcase_44 AC 38 ms
53,144 KB
testcase_45 AC 39 ms
52,884 KB
testcase_46 AC 38 ms
53,076 KB
testcase_47 AC 39 ms
52,748 KB
testcase_48 AC 38 ms
51,820 KB
testcase_49 AC 38 ms
52,468 KB
testcase_50 AC 37 ms
53,496 KB
testcase_51 AC 39 ms
53,528 KB
testcase_52 AC 39 ms
52,280 KB
testcase_53 AC 39 ms
52,608 KB
testcase_54 AC 38 ms
52,776 KB
testcase_55 AC 38 ms
52,516 KB
testcase_56 WA -
testcase_57 AC 91 ms
72,464 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,(F+1)*T,F+1):
        h=(F+1)*k*g+2
        X+=((F+1)*k+1)/(h**h)
    print(X)
0