結果

問題 No.394 ハーフパイプ(1)
ユーザー HagianHagian
提出日時 2021-06-11 04:16:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 10,732 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2023-08-20 14:57:01
合計ジャッジ時間 951 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,824 KB
testcase_01 AC 13 ms
7,768 KB
testcase_02 AC 13 ms
7,816 KB
testcase_03 AC 13 ms
7,816 KB
testcase_04 AC 12 ms
7,988 KB
testcase_05 AC 12 ms
7,964 KB
testcase_06 AC 13 ms
7,784 KB
testcase_07 AC 13 ms
7,872 KB
testcase_08 AC 13 ms
7,968 KB
testcase_09 AC 12 ms
8,000 KB
testcase_10 AC 12 ms
7,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = [int(i) for i in input().split()]
S.sort()
S = S[1:-1]
print("{:.2f}".format(sum(S) / 4))
0