Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
 
PREVIOUS NEXT
Tagged: #enormous #input #test #codechef #solution
ADD COMMENT
Topic
Name
7+1 =