結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
89,104 KB
testcase_01 AC 198 ms
88,940 KB
testcase_02 AC 201 ms
89,200 KB
testcase_03 AC 203 ms
89,244 KB
testcase_04 AC 199 ms
89,164 KB
testcase_05 AC 203 ms
89,084 KB
testcase_06 AC 199 ms
88,896 KB
testcase_07 AC 200 ms
88,960 KB
testcase_08 AC 200 ms
88,888 KB
testcase_09 AC 200 ms
89,168 KB
testcase_10 AC 197 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
S = sorted(list(map(int,input().split())))
print(Decimal(str((sum(S[1:len(S)-1])/(len(S)-2)))).quantize(Decimal('0.01')))
0