結果

問題 No.1385 Simple Geometry 2
ユーザー Mitarushi
提出日時 2021-02-05 21:19:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 149,744 KB
最終ジャッジ日時 2024-07-04 13:02:14
合計ジャッジ時間 13,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 65
権限があれば一括ダウンロードができます

ソースコード

diff #

n, l = map(int, input().split())
assert 3 <= n <= 5*10**5
assert n <= l <= 10**12
t = [int(i) for i in input().split()]
assert 0 <= min(t) and max(t) <= l-1
for i in range(n-1):
    assert t[i] < t[i+1]
0