結果

問題 No.1170 Never Want to Walk
ユーザー Takuya Arai
提出日時 2022-11-23 12:54:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 219 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-09-24 17:45:38
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B = map(int, input().split())
station = []

station[map(int, input().split())]

for i in arange(N):
    if (station[i] - station[j]) >= A and (station[i] - station[j]) <= B:
        print(station[i] - station[j])
0