結果

問題 No.275 中央値を求めよ
ユーザー _kouhe1_kouhe1
提出日時 2018-11-08 01:57:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 266 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-20 20:57:32
合計ジャッジ時間 38,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,704 KB
testcase_01 AC 30 ms
21,632 KB
testcase_02 AC 77 ms
21,760 KB
testcase_03 AC 28 ms
17,568 KB
testcase_04 AC 29 ms
17,696 KB
testcase_05 AC 27 ms
17,824 KB
testcase_06 AC 57 ms
17,568 KB
testcase_07 TLE -
testcase_08 AC 185 ms
17,696 KB
testcase_09 AC 279 ms
21,632 KB
testcase_10 AC 274 ms
17,824 KB
testcase_11 AC 28 ms
21,632 KB
testcase_12 AC 26 ms
17,696 KB
testcase_13 AC 28 ms
17,696 KB
testcase_14 AC 27 ms
17,700 KB
testcase_15 TLE -
testcase_16 AC 28 ms
17,572 KB
testcase_17 AC 28 ms
21,760 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 642 ms
17,568 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 52 ms
17,696 KB
testcase_29 TLE -
testcase_30 AC 56 ms
17,828 KB
testcase_31 TLE -
testcase_32 AC 229 ms
10,880 KB
testcase_33 TLE -
testcase_34 AC 59 ms
10,880 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 238 ms
10,880 KB
testcase_38 AC 526 ms
10,752 KB
testcase_39 AC 934 ms
10,880 KB
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:10: SyntaxWarning: "is" with 'int' literal. Did you mean "=="?
  if len(a)%2 is 1:

ソースコード

diff #

n=int(input())
a = [int(i) for i in input().split()]
i = 1
while i < len(a):
    if a[i] < a[i-1]:
        a[i],a[i-1] = a[i-1],a[i]
        i = 1
        continue
    i += 1
if len(a)%2 is 1:
    print(a[len(a)//2])
else:
    print((a[len(a)//2]+a[len(a)//2-1])/2)
0