結果
問題 |
No.394 ハーフパイプ(1)
|
ユーザー |
|
提出日時 | 2020-10-13 13:50:12 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-20 18:26:08 |
合計ジャッジ時間 | 984 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 11 |
ソースコード
# coding=utf-8: score = list(map(int, input().split())) ma = max(score) mi = min(score) total = 0 for i in score: total += i avg = round((total - ma - mi) / (len(score) - 2), 1) print(avg)