結果
問題 | No.1110 好きな歌 |
ユーザー |
|
提出日時 | 2022-02-20 20:57:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 155 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 271,204 KB |
最終ジャッジ日時 | 2024-06-29 10:58:20 |
合計ジャッジ時間 | 9,713 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 TLE * 1 -- * 29 |
ソースコード
n,d = map(int,input().split()) array = [int(input()) for i in range(n)] for v in array: print(len(list(filter(lambda x:x>=d,map(lambda x:v-x,array)))))