Answers for "enormous input test codechef solution"

0

enormous input test codechef solution

try:
  n,k=map(int,input().split())
  count=0
  for i in range(n):
    x=int(input())
    if x%k==0:
      count+=1
   print(count)
 except:
  pass
Posted by: Guest on May-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language