about summary refs log tree commit diff
path: root/codechef/cash.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2020-02-17 20:29:47 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2020-02-17 20:29:47 +0700
commit1f9cdd4cce664439625f13da1baf894190b7e9a6 (patch)
tree2d1af656692ece87c83c4f57196b5f3825d475b7 /codechef/cash.py
parent82e6cf7d1046d6cee16f7e8b044ec33e7ec6c4b7 (diff)
downloadcp-1f9cdd4cce664439625f13da1baf894190b7e9a6.tar.gz
Thank you Corona for giving me some time to do this
Diffstat (limited to 'codechef/cash.py')
-rwxr-xr-xcodechef/cash.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/codechef/cash.py b/codechef/cash.py
new file mode 100755
index 0000000..b9463fc
--- /dev/null
+++ b/codechef/cash.py
@@ -0,0 +1,4 @@
+#!/usr/bin/env python
+for t in range(int(input())):
+    n, k = map(int, input().split())
+    print(sum(map(int, input().split())) % k)