結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 WA -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 AC 1,036 ms
51,712 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 1,052 ms
51,832 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 1,070 ms
51,852 KB
testcase_22 AC 1,031 ms
50,840 KB
testcase_23 AC 1,030 ms
50,768 KB
testcase_24 AC 1,015 ms
50,800 KB
testcase_25 AC 1,028 ms
50,772 KB
testcase_26 AC 1,016 ms
50,768 KB
testcase_27 AC 1,012 ms
50,732 KB
testcase_28 RE -
testcase_29 AC 1,034 ms
50,840 KB
testcase_30 AC 1,024 ms
50,808 KB
testcase_31 AC 1,012 ms
50,652 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 1,011 ms
50,804 KB
testcase_37 AC 1,022 ms
50,596 KB
testcase_38 AC 1,035 ms
50,812 KB
testcase_39 AC 1,018 ms
50,652 KB
testcase_40 RE -
testcase_41 AC 1,014 ms
50,744 KB
testcase_42 AC 940 ms
47,552 KB
testcase_43 AC 1,004 ms
48,724 KB
testcase_44 RE -
testcase_45 AC 958 ms
47,632 KB
testcase_46 AC 975 ms
47,580 KB
testcase_47 AC 981 ms
47,812 KB
testcase_48 AC 990 ms
48,720 KB
testcase_49 AC 955 ms
47,628 KB
testcase_50 AC 1,020 ms
50,028 KB
testcase_51 AC 1,018 ms
49,408 KB
testcase_52 AC 29 ms
10,752 KB
testcase_53 AC 763 ms
26,180 KB
testcase_54 RE -
testcase_55 RE -
testcase_56 WA -
testcase_57 AC 822 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
if A+B&1:
    assert False
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