結果

問題 No.1274 楽しい格子点
ユーザー nagissnagiss
提出日時 2020-10-30 23:49:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 104,336 KB
最終ジャッジ日時 2024-07-22 03:35:02
合計ジャッジ時間 15,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
91,408 KB
testcase_01 AC 176 ms
89,872 KB
testcase_02 WA -
testcase_03 AC 327 ms
93,128 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 356 ms
93,576 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 180 ms
91,592 KB
testcase_23 AC 175 ms
91,860 KB
testcase_24 AC 182 ms
91,620 KB
testcase_25 AC 178 ms
91,600 KB
testcase_26 AC 177 ms
91,464 KB
testcase_27 AC 172 ms
91,840 KB
testcase_28 AC 175 ms
91,360 KB
testcase_29 AC 177 ms
91,584 KB
testcase_30 AC 182 ms
91,456 KB
testcase_31 AC 176 ms
91,656 KB
testcase_32 AC 179 ms
91,460 KB
testcase_33 AC 179 ms
91,740 KB
testcase_34 AC 184 ms
91,612 KB
testcase_35 AC 181 ms
91,332 KB
testcase_36 AC 177 ms
91,620 KB
testcase_37 AC 182 ms
91,352 KB
testcase_38 AC 174 ms
91,352 KB
testcase_39 AC 176 ms
91,860 KB
testcase_40 AC 177 ms
91,608 KB
testcase_41 AC 179 ms
91,492 KB
testcase_42 AC 172 ms
91,320 KB
testcase_43 AC 180 ms
91,588 KB
testcase_44 AC 177 ms
91,340 KB
testcase_45 AC 178 ms
91,580 KB
testcase_46 AC 172 ms
91,608 KB
testcase_47 AC 177 ms
91,400 KB
testcase_48 AC 180 ms
91,736 KB
testcase_49 WA -
testcase_50 AC 178 ms
91,456 KB
testcase_51 AC 178 ms
91,736 KB
testcase_52 AC 41 ms
54,980 KB
testcase_53 AC 161 ms
89,928 KB
testcase_54 AC 162 ms
89,632 KB
testcase_55 AC 165 ms
87,512 KB
testcase_56 AC 171 ms
89,708 KB
testcase_57 AC 167 ms
89,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
A, B = map(int, input().split())
Closed = {(1, 1)}
ans = 0.25
Dx = [A,A,-A,-A,B,B,-B,-B]
Dy = [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 < 50 and 1 <= uy < 50:
                ans += 1 / ((ux+uy)**(ux+uy))
                #print(ux, uy)
print(ans)
0