結果
問題 |
No.1110 好きな歌
|
ユーザー |
|
提出日時 | 2020-07-11 11:35:34 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 270 ms / 5,000 ms |
コード長 | 168 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 118,400 KB |
最終ジャッジ日時 | 2024-10-12 20:44:12 |
合計ジャッジ時間 | 9,393 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 51 |
ソースコード
import bisect _,D,*A = map(int,open(0).read().split()) B = sorted(A) for a in A: if a <= D: print(0) else: print(bisect.bisect_right(B, a-D))