結果
問題 | No.21 平均の差 |
ユーザー | nehan_der_thal |
提出日時 | 2020-03-09 21:03:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 123 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 53,756 KB |
最終ジャッジ日時 | 2024-11-14 07:02:28 |
合計ジャッジ時間 | 1,128 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 36 ms
52,352 KB |
testcase_04 | AC | 36 ms
52,216 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
N=int(input()) K=int(input()) X=[] for _ in range(N): X.append(int(input())) X.sort() r=X[-1]-X[0] print(-(-r//2))