結果
問題 | No.275 中央値を求めよ |
ユーザー |
![]() |
提出日時 | 2018-10-23 18:40:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-19 04:30:03 |
合計ジャッジ時間 | 2,503 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 38 |
ソースコード
n = input() l = input() for i in range(n-1): for j in range(n-i-1): if l[j] > l[j+1]: tem = l[j] l[j] = l[j+1] l[j+1] = tem print(l)