結果

問題 No.112 ややこしい鶴亀算
ユーザー 村上史弥村上史弥
提出日時 2022-11-24 22:04:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 564 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,836 KB
最終ジャッジ日時 2024-10-01 10:32:34
合計ジャッジ時間 15,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
44,712 KB
testcase_01 AC 548 ms
44,200 KB
testcase_02 AC 544 ms
44,324 KB
testcase_03 AC 544 ms
44,584 KB
testcase_04 AC 543 ms
44,560 KB
testcase_05 AC 539 ms
44,836 KB
testcase_06 AC 543 ms
44,208 KB
testcase_07 AC 543 ms
44,192 KB
testcase_08 AC 545 ms
44,584 KB
testcase_09 AC 544 ms
44,452 KB
testcase_10 AC 552 ms
44,244 KB
testcase_11 AC 564 ms
44,328 KB
testcase_12 AC 556 ms
44,192 KB
testcase_13 AC 553 ms
44,208 KB
testcase_14 AC 548 ms
44,324 KB
testcase_15 AC 548 ms
44,448 KB
testcase_16 AC 555 ms
44,312 KB
testcase_17 AC 545 ms
44,328 KB
testcase_18 AC 552 ms
44,320 KB
testcase_19 AC 536 ms
44,696 KB
testcase_20 AC 543 ms
44,320 KB
testcase_21 AC 548 ms
44,824 KB
testcase_22 AC 552 ms
44,324 KB
testcase_23 AC 551 ms
44,308 KB
testcase_24 AC 538 ms
44,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.linalg import solve

N = int(input())
a = input().split()
A = 0
for i in a:
    A += int(i)
num = A / (N - 1)

left = [[1, 1],
        [2, 4]]

right = [N, num]

x = solve(left, right)[0]
y = solve(left, right)[1]

print(int(x), int(y))
0