結果

問題 No.394 ハーフパイプ(1)
ユーザー U SU S
提出日時 2020-02-08 10:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-09-25 08:45:23
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
43,920 KB
testcase_01 AC 496 ms
44,432 KB
testcase_02 AC 500 ms
44,176 KB
testcase_03 AC 496 ms
43,928 KB
testcase_04 AC 492 ms
44,304 KB
testcase_05 AC 476 ms
44,176 KB
testcase_06 AC 476 ms
44,168 KB
testcase_07 AC 486 ms
44,048 KB
testcase_08 AC 490 ms
44,284 KB
testcase_09 AC 495 ms
44,180 KB
testcase_10 AC 500 ms
44,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

s = list(map(int,input().split()))
s.sort()
ans = np.mean(s[1:5])
print("{:.2f}".format(ans))


0