結果

問題 No.1274 楽しい格子点
ユーザー nagissnagiss
提出日時 2020-10-31 00:09:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,876 KB
最終ジャッジ日時 2024-07-22 03:55:06
合計ジャッジ時間 59,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 954 ms
47,732 KB
testcase_01 AC 752 ms
26,248 KB
testcase_02 WA -
testcase_03 AC 1,068 ms
51,452 KB
testcase_04 WA -
testcase_05 AC 1,054 ms
51,720 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1,030 ms
51,776 KB
testcase_09 AC 1,024 ms
51,436 KB
testcase_10 AC 1,065 ms
51,876 KB
testcase_11 WA -
testcase_12 AC 1,066 ms
51,456 KB
testcase_13 AC 1,073 ms
51,608 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,048 ms
51,216 KB
testcase_17 AC 1,025 ms
51,404 KB
testcase_18 AC 1,037 ms
51,768 KB
testcase_19 AC 1,025 ms
51,420 KB
testcase_20 AC 1,012 ms
50,532 KB
testcase_21 WA -
testcase_22 AC 1,020 ms
50,620 KB
testcase_23 AC 1,057 ms
50,668 KB
testcase_24 AC 1,028 ms
50,672 KB
testcase_25 AC 1,039 ms
50,748 KB
testcase_26 AC 1,019 ms
50,616 KB
testcase_27 AC 1,007 ms
50,800 KB
testcase_28 AC 1,032 ms
50,684 KB
testcase_29 AC 1,042 ms
50,676 KB
testcase_30 AC 1,040 ms
50,960 KB
testcase_31 AC 1,048 ms
50,776 KB
testcase_32 AC 1,045 ms
50,800 KB
testcase_33 AC 1,022 ms
50,692 KB
testcase_34 AC 1,024 ms
50,844 KB
testcase_35 AC 1,040 ms
50,952 KB
testcase_36 AC 1,023 ms
50,800 KB
testcase_37 AC 1,030 ms
50,780 KB
testcase_38 AC 1,048 ms
50,792 KB
testcase_39 AC 1,016 ms
50,676 KB
testcase_40 AC 1,009 ms
50,676 KB
testcase_41 AC 1,065 ms
50,796 KB
testcase_42 AC 967 ms
47,588 KB
testcase_43 AC 1,032 ms
48,724 KB
testcase_44 AC 949 ms
47,672 KB
testcase_45 AC 980 ms
47,772 KB
testcase_46 AC 992 ms
47,580 KB
testcase_47 AC 978 ms
47,948 KB
testcase_48 AC 997 ms
48,672 KB
testcase_49 WA -
testcase_50 AC 1,042 ms
49,852 KB
testcase_51 AC 1,056 ms
49,356 KB
testcase_52 AC 30 ms
10,880 KB
testcase_53 AC 791 ms
26,312 KB
testcase_54 AC 783 ms
26,720 KB
testcase_55 AC 735 ms
24,544 KB
testcase_56 AC 736 ms
24,632 KB
testcase_57 AC 840 ms
27,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
if A+B&1==0:
    G = gcd(A, B) * 2
else:
    G = gcd(A, B)
Closed = {(1, 1)}
ans = 0.25
Dx = [G,0,-G,0,A,A,-A,-A,B,B,-B,-B]
Dy = [0,G,0,-G,B,-B,B,-B,A,-A,A,-A]
q = deque([(1, 1)])
for i in range(10**5):
    if not q:
        break
    x, y = q.popleft()
    for dx, dy in zip(Dx, Dy):
        ux, uy = x+dx, y+dy
        if (ux, uy) not in Closed:
            Closed.add((ux, uy))
            q.append((ux, uy))
            if 1 <= ux < 20 and 1 <= uy < 20:
                ans += 1 / ((ux+uy)**(ux+uy))
                #print(ux, uy)
print(ans)
0