結果

問題 No.394 ハーフパイプ(1)
ユーザー ああいいああいい
提出日時 2022-03-24 22:12:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 53,524 KB
最終ジャッジ日時 2024-04-21 07:06:57
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,084 KB
testcase_01 AC 46 ms
52,676 KB
testcase_02 AC 45 ms
52,516 KB
testcase_03 AC 46 ms
52,488 KB
testcase_04 AC 46 ms
52,864 KB
testcase_05 AC 46 ms
52,004 KB
testcase_06 AC 46 ms
52,672 KB
testcase_07 AC 46 ms
53,108 KB
testcase_08 AC 45 ms
52,808 KB
testcase_09 AC 47 ms
53,524 KB
testcase_10 AC 45 ms
52,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = list(map(int,input().split()))
l.sort()
ans = 0
for i in range(1,5):
    ans += l[i]
print(f'{ans/4:.02f}')
0