結果

問題 No.112 ややこしい鶴亀算
ユーザー dangodango
提出日時 2023-06-05 21:46:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 574 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,652 KB
最終ジャッジ日時 2024-06-09 05:19:49
合計ジャッジ時間 17,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 562 ms
44,572 KB
testcase_01 AC 536 ms
44,652 KB
testcase_02 AC 546 ms
44,056 KB
testcase_03 AC 551 ms
44,172 KB
testcase_04 AC 556 ms
44,064 KB
testcase_05 AC 554 ms
44,056 KB
testcase_06 AC 539 ms
44,064 KB
testcase_07 AC 542 ms
44,444 KB
testcase_08 AC 541 ms
44,576 KB
testcase_09 AC 536 ms
44,320 KB
testcase_10 AC 536 ms
44,048 KB
testcase_11 AC 554 ms
44,192 KB
testcase_12 AC 545 ms
44,448 KB
testcase_13 AC 553 ms
44,328 KB
testcase_14 AC 541 ms
44,048 KB
testcase_15 AC 535 ms
44,400 KB
testcase_16 AC 549 ms
44,060 KB
testcase_17 AC 542 ms
44,312 KB
testcase_18 AC 552 ms
44,060 KB
testcase_19 AC 542 ms
44,192 KB
testcase_20 AC 544 ms
44,188 KB
testcase_21 AC 563 ms
44,044 KB
testcase_22 AC 555 ms
44,312 KB
testcase_23 AC 574 ms
44,452 KB
testcase_24 AC 548 ms
44,560 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