結果

問題 No.605 板挟みの球面
ユーザー hiragnhiragn
提出日時 2022-11-01 03:24:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,732 KB
実行使用メモリ 29,220 KB
最終ジャッジ日時 2023-09-22 23:54:04
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
29,080 KB
testcase_01 AC 134 ms
29,220 KB
testcase_02 AC 134 ms
28,988 KB
testcase_03 AC 133 ms
29,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def main():
    a = np.float64(input())
    b = np.float64(input())
    ans = 2 * (b - a) * np.pi
    print(ans)


if __name__ == "__main__":
    main()
0