結果

問題 No.813 ユキちゃんの冒険
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-08 21:30:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 97,384 KB
最終ジャッジ日時 2024-09-21 08:35:05
合計ジャッジ時間 16,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
44,224 KB
testcase_01 AC 529 ms
44,732 KB
testcase_02 AC 533 ms
54,220 KB
testcase_03 AC 538 ms
51,908 KB
testcase_04 AC 750 ms
97,384 KB
testcase_05 AC 720 ms
92,036 KB
testcase_06 AC 554 ms
58,792 KB
testcase_07 AC 528 ms
45,040 KB
testcase_08 AC 621 ms
69,060 KB
testcase_09 AC 530 ms
44,856 KB
testcase_10 AC 544 ms
53,688 KB
testcase_11 AC 550 ms
49,636 KB
testcase_12 AC 626 ms
69,052 KB
testcase_13 AC 559 ms
57,924 KB
testcase_14 AC 527 ms
44,408 KB
testcase_15 AC 677 ms
78,276 KB
testcase_16 AC 705 ms
80,704 KB
testcase_17 AC 526 ms
45,372 KB
testcase_18 AC 519 ms
44,480 KB
testcase_19 AC 744 ms
87,612 KB
testcase_20 AC 540 ms
52,028 KB
testcase_21 AC 526 ms
44,700 KB
testcase_22 AC 523 ms
45,116 KB
testcase_23 AC 567 ms
59,452 KB
testcase_24 AC 524 ms
44,220 KB
testcase_25 AC 783 ms
88,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
eps = 1e-6

n = int(input())
p = float(input())
q = float(input())
if abs(p - 1) < eps:
    print(1.0)
    exit()

A = np.eye(n * 2, dtype=np.float64)
X = np.arange(1, n * 2)
Y = np.arange(1, n * 2)
Y[X % 2 == 0] += 1
Y[X % 2 == 1] -= 1
np.add.at(A, (X, Y), -p)

X = np.arange(1, n * 2 - 1)
Z = np.arange(1, n * 2 - 1)
Z[X % 2 == 0] -= 2
Z[X % 2 == 1] += 2
np.add.at(A, (X, Z), -q)

b = np.zeros(2 * n, dtype=np.float64)
b[0] = 1.0

res = np.linalg.solve(A, b)
print(res[1])
0