結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 680 ms
26,116 KB
testcase_02 AC 966 ms
50,816 KB
testcase_03 AC 945 ms
51,368 KB
testcase_04 AC 966 ms
51,696 KB
testcase_05 AC 921 ms
51,536 KB
testcase_06 AC 908 ms
51,060 KB
testcase_07 AC 898 ms
51,876 KB
testcase_08 AC 912 ms
51,520 KB
testcase_09 AC 916 ms
51,672 KB
testcase_10 AC 938 ms
51,688 KB
testcase_11 AC 943 ms
51,476 KB
testcase_12 AC 940 ms
51,452 KB
testcase_13 AC 925 ms
51,612 KB
testcase_14 AC 913 ms
50,936 KB
testcase_15 AC 917 ms
51,688 KB
testcase_16 AC 907 ms
51,076 KB
testcase_17 AC 916 ms
51,620 KB
testcase_18 AC 922 ms
51,852 KB
testcase_19 AC 913 ms
51,480 KB
testcase_20 AC 929 ms
50,528 KB
testcase_21 AC 926 ms
51,940 KB
testcase_22 AC 897 ms
50,668 KB
testcase_23 AC 900 ms
50,716 KB
testcase_24 AC 924 ms
50,660 KB
testcase_25 AC 901 ms
50,680 KB
testcase_26 AC 925 ms
50,728 KB
testcase_27 AC 901 ms
50,668 KB
testcase_28 AC 894 ms
50,784 KB
testcase_29 AC 948 ms
50,664 KB
testcase_30 AC 889 ms
50,924 KB
testcase_31 AC 866 ms
50,680 KB
testcase_32 AC 923 ms
50,852 KB
testcase_33 AC 889 ms
50,788 KB
testcase_34 AC 905 ms
50,656 KB
testcase_35 AC 930 ms
50,900 KB
testcase_36 AC 911 ms
50,796 KB
testcase_37 AC 902 ms
50,652 KB
testcase_38 AC 888 ms
50,776 KB
testcase_39 AC 880 ms
50,656 KB
testcase_40 AC 902 ms
50,904 KB
testcase_41 AC 898 ms
50,660 KB
testcase_42 AC 826 ms
47,532 KB
testcase_43 AC 866 ms
48,624 KB
testcase_44 AC 841 ms
47,688 KB
testcase_45 AC 820 ms
47,520 KB
testcase_46 AC 822 ms
47,464 KB
testcase_47 AC 851 ms
47,924 KB
testcase_48 AC 866 ms
48,668 KB
testcase_49 AC 801 ms
47,420 KB
testcase_50 AC 900 ms
49,908 KB
testcase_51 AC 888 ms
49,356 KB
testcase_52 AC 26 ms
10,752 KB
testcase_53 AC 678 ms
26,060 KB
testcase_54 AC 701 ms
26,588 KB
testcase_55 AC 651 ms
24,412 KB
testcase_56 AC 648 ms
24,828 KB
testcase_57 AC 714 ms
27,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import deque
A, B = map(int, input().split())
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:
                if not (A+B&1 == 0 and ux+uy&1):
                    ans += 1 / ((ux+uy)**(ux+uy))
print(ans)
0