ログイン
新規登録
AtsuoCoder Waseda Tour Finals 2025
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 7d0396c1-687c-477f-af88-f439fc0a421c
コード
import math def main(): n,d = map(int,input().split()) a = list(map(int,input().split())) count = 0 for x in a: if x >= d: count += 1 print(count) return main()
結果
問題
点数
言語
結果
実行時間
メモリ
D - Deletion
100
Python3
AC
38 ms
17920 KiB