QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#686158 | #8340. 3 Sum | MaxDYF | Compile Error | / | / | C++23 | 395b | 2024-10-29 02:18:02 | 2024-10-29 02:18:03 |
Judging History
answer
n, k = map(int, input().split())
mod = (10**k) - 1
a = []
s = dict()
for i in range(n):
a.append(int(input()) % mod)
for i in range(n):
for j in range(i, n):
x = a[i]
y = a[j]
s[(x + y) % mod] = s.get((x + y) % mod, 0) + 1
ans = 0
for x in a:
ans += s.get(mod - x, 0)
for x in a:
if ((x + x + x) % mod == 0):
ans -= 1
print(ans)
詳細信息
answer.code:1:1: error: ‘n’ does not name a type 1 | n, k = map(int, input().split()) | ^