結果

問題 No.1380 Borderline
ユーザー Mitarushi
提出日時 2021-02-05 21:56:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-03 06:51:18
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
p = [int(i) for i in input().split()]
assert 1 <= n <= 172
assert 1 <= k <= 172
assert 0 <= min(p) and max(p) <= 400
0