結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-27 09:03:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-29 08:14:29
合計ジャッジ時間 1,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))
assert 1<=M<=N<=50
assert 0<=Y<X<=50
assert 0<=Z<=50
assert len(A)==N
ok=False
for i in A:
    assert 0<=i<=50
    if Y<i:
        ok=True
assert ok
0