結果

問題 No.1387 Mitarushi's Remodeling
ユーザー Mitarushi
提出日時 2021-02-05 21:20:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 121,612 KB
最終ジャッジ日時 2024-07-02 11:29:18
合計ジャッジ時間 15,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 67
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
m = [int(i) for i in input().split()]
assert 1 <= k < n <= 5*10**5
assert 1 <= min(m) and max(m) <= 10**9
0