結果

問題 No.3031 (物理学)長距離相互作用
ユーザー amuse mentamuse ment
提出日時 2023-08-08 18:28:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 10,000 ms
コード長 302 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,812 KB
最終ジャッジ日時 2024-04-26 10:57:18
合計ジャッジ時間 7,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 479 ms
43,688 KB
testcase_01 AC 481 ms
43,564 KB
testcase_02 AC 490 ms
43,688 KB
testcase_03 AC 481 ms
43,688 KB
testcase_04 AC 478 ms
43,564 KB
testcase_05 AC 470 ms
43,684 KB
testcase_06 AC 471 ms
43,556 KB
testcase_07 AC 476 ms
43,812 KB
testcase_08 AC 472 ms
43,560 KB
testcase_09 AC 479 ms
43,692 KB
testcase_10 AC 480 ms
43,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

M_NaCl=1.7475645946
M_CsCl=1.7626747730
a000,a001,a010,a011,a100,a101,a110,a111=list(map(float,input().split()))
b111,b113,b131,b133,b311,b313,b331,b333=list(map(float,input().split()))
print(-(M_NaCl*(a011+a101+a110-a001-a010-a100)/3+M_CsCl*(3*a000+a001+a010+a100)/np.sqrt(3)/3*2))
0