QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#773804 | #9578. 爱上字典 | laonongmin# | WA | 13ms | 10700kb | Python3 | 222b | 2024-11-23 10:23:46 | 2024-11-23 10:23:47 |
Judging History
answer
s = input().lower().split()
s = [ss.strip('.').strip('!').strip(',').strip('?') for ss in s]
# print(s)
n = int(input())
lst = input().lower().split()
ans = 0
for ss in s:
ans += (lst.count(ss)==0)
print(ans)
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 11ms
memory: 10636kb
input:
I love Liaoning. Love Dalian! 1 love
output:
3
result:
ok single line: '3'
Test #2:
score: -100
Wrong Answer
time: 13ms
memory: 10700kb
input:
Sulfox Loves Furry! Fur fur Furred. 2 anthropomorphic furry
output:
5
result:
wrong answer 1st lines differ - expected: '4', found: '5'