結果

問題 No.394 ハーフパイプ(1)
ユーザー otsunekootsuneko
提出日時 2021-05-07 15:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 89,248 KB
最終ジャッジ日時 2023-10-13 06:08:44
合計ジャッジ時間 3,781 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
89,064 KB
testcase_01 AC 218 ms
89,084 KB
testcase_02 AC 212 ms
89,016 KB
testcase_03 AC 212 ms
89,248 KB
testcase_04 AC 207 ms
89,124 KB
testcase_05 AC 210 ms
88,980 KB
testcase_06 AC 211 ms
89,208 KB
testcase_07 AC 215 ms
88,912 KB
testcase_08 AC 212 ms
89,068 KB
testcase_09 AC 207 ms
88,960 KB
testcase_10 AC 208 ms
88,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
S = list(map(int,input().split()))
print(Decimal(str((sum(S)-min(S)-max(S))/(len(S)-2))).quantize(Decimal('0.01')))
0