🏡 index : github.com/captn3m0/codechef.git

---
{"category_name":"school","problem_code":"INTEST","problem_name":"Enormous Input Test","languages_supported":{"0":"ADA","1":"ASM","2":"BASH","3":"BF","4":"C","5":"C99 strict","6":"CAML","7":"CLOJ","8":"CLPS","9":"CPP 4.3.2","10":"CPP 4.9.2","11":"CPP14","12":"CS2","13":"D","14":"ERL","15":"FORT","16":"FS","17":"GO","18":"HASK","19":"ICK","20":"ICON","21":"JAVA","22":"JS","23":"LISP clisp","24":"LISP sbcl","25":"LUA","26":"NEM","27":"NICE","28":"NODEJS","29":"PAS fpc","30":"PAS gpc","31":"PERL","32":"PHP","33":"PIKE","34":"PRLG","35":"PYPY","36":"PYTH","37":"PYTH 3.4","38":"RUBY","39":"SCALA","40":"SCM chicken","41":"SCM guile","42":"SCM qobi","43":"ST","44":"TCL","45":"TEXT","46":"WSPC"},"max_timelimit":8,"source_sizelimit":50000,"problem_author":"admin","problem_tester":null,"date_added":"1-12-2008","tags":{"0":"admin"},"time":{"view_start_date":1232694607,"submit_start_date":1232694607,"visible_start_date":1240484210,"end_date":1735669800},"layout":"problem"}
---
<span class="solution-visible-txt">All submissions for this problem are available.</span><p>The purpose of this problem is to verify whether the method you are using to read input data is sufficiently fast to handle problems branded with the <b>enormous Input/Output</b> warning. You are expected to be able to process at least 2.5MB of input data per second at runtime.

<h3>Input</h3>
<p>The input begins with two positive integers n k (n, k<=10<sup>7</sup>). The next n lines of input contain one positive integer t<sub>i</sub>, not greater than 10<sup>9</sup>, each.

<h3>Output</h3>
<p>Write a single integer to output, denoting how many integers t<sub>i</sub> are divisible by k.

<h3>Example</h3>

<pre>
<b>Input:</b>
7 3
1
51
966369
7
9
999996
11

<b>Output:</b>
4
</pre>