結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | takexxx |
提出日時 | 2018-07-14 02:23:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 208 bytes |
コンパイル時間 | 262 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-09 05:55:24 |
合計ジャッジ時間 | 612 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
s = int(input().readline().rstrip()) list = input().read().split() list.sort() if s % 2 ==1: x = (s+1) // 2 print(list[x-1]) if s % 2 ==0: x = s // 2 print((int(list[x-1])+int(list[x]))/2)