QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#64233 | #4798. Floor Tiles in a Park | neko_nyaa | Compile Error | / | / | C++23 | 1.3kb | 2022-11-24 12:48:25 | 2022-11-24 12:48:28 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2022-11-24 12:48:28]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2022-11-24 12:48:25]
- 提交
answer
def nCk(n, k):
p, q = 1, 1
for i in range(1, k+1):
p *= (n-i+1)
q *= i
return p//q
###############################
def solveOne(w, h):
return 1
###############################
def solveTwo(w, h):
return (w-1)+(h-1)
###############################
def solveThree(w, h):
ans = 0
# two
ans += nCk(w-1, 2)
ans += nCk(h-1, 2)
# one, one
ans += (w-1)*(h-1)*4
return ans
###############################
def solveFour(w, h):
ans = 0
# three
ans += nCk(w-1, 3)
ans += nCk(h-1, 3)
# two, one
ans += nCk(w-1, 2)*nCk(h-1, 1)*11
ans += nCk(h-1, 2)*nCk(w-1, 1)*11
# one, one
ans += (w-1)*(h-1)
return ans
###############################
def solveFive(w, h):
ans = 0
# four
ans += nCk(w-1, 4)
ans += nCk(h-1, 4)
# three, one
ans += nCk(w-1, 3)*nCk(h-1, 1)*26
ans += nCk(h-1, 3)*nCk(w-1, 1)*26
# two, two
ans += nCk(w-1, 2)*nCk(h-1, 2)*64
# two, one
ans += nCk(w-1, 2)*nCk(h-1, 1)*7
ans += nCk(h-1, 2)*nCk(w-1, 1)*7
return ans
w, h, k = map(int, input().split())
if (k == 1):
print(solveOne(w, h) % 998244353)
elif (k == 2):
print(solveTwo(w, h) % 998244353)
elif (k == 3):
print(solveThree(w, h) % 998244353)
elif (k == 4):
print(solveFour(w, h) % 998244353)
elif (k == 5):
print(solveFive(w, h) % 998244353)
Details
answer.code:8:1: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:3: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:5: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:7: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:9: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:11: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:13: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:15: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:17: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:19: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:21: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:23: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:25: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:27: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:29: error: stray ‘##’ in program 8 | ############################### | ^~ answer.code:8:31: error: stray ‘#’ in program 8 | ############################### | ^ answer.code:13:1: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:3: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:5: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:7: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:9: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:11: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:13: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:15: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:17: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:19: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:21: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:23: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:25: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:27: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:29: error: stray ‘##’ in program 13 | ############################### | ^~ answer.code:13:31: error: stray ‘#’ in program 13 | ############################### | ^ answer.code:18:1: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:3: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:5: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:7: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:9: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:11: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:13: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:15: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:17: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:19: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:21: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:23: error: stray ‘##’ in program 18 | ############################### | ^~ answer.code:18:25: error: stray ‘##’ in program 18 | ###########...