hkshakib

Untitled

Feb 7th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. int main()
  5. {
  6. int t;
  7. cin>>t;
  8. while(t--)
  9. {
  10. ll n,k,sum=0;
  11. cin>>n>>k;
  12. for(int i=0; i<n; i++)
  13. {
  14. ll p;
  15. cin>>p;
  16. sum+=p%k;
  17. }
  18. cout<<sum%k<<endl;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment