結果
問題 |
No.1110 好きな歌
|
ユーザー |
|
提出日時 | 2020-07-10 21:55:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 154 bytes |
コンパイル時間 | 579 ms |
コンパイル使用メモリ | 81,808 KB |
実行使用メモリ | 79,360 KB |
最終ジャッジ日時 | 2024-10-11 09:03:56 |
合計ジャッジ時間 | 9,109 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 10 WA * 41 |
ソースコード
import bisect n, d = map(int, input().split()) A = [int(input()) for _ in range(n)] for a in A: idx = bisect.bisect_right(A, a - d) print(idx)