QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#725036 | #9578. 爱上字典 | snow_miku# | AC ✓ | 202ms | 28976kb | C++14 | 987b | 2024-11-08 15:58:11 | 2024-11-08 15:58:12 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using LL = long long;
const int N = 5e6 + 10;
char v[N];
void solve()
{
cin.getline(v, N - 5);
set <string> st;
string V = string(v);
int n = V.size();
string tmp;
for(int i = 0; i < n; i++) {
if(V[i] <= 'Z' && V[i] >= 'A') {
V[i] += 32;
tmp += V[i];
}
else if(V[i] <= 'z' && V[i] >= 'a') {
tmp += V[i];
}
else {
if(tmp.size()) st.insert(tmp);
tmp = "";
}
}
map <string, int> mp;
if(tmp.size()) st.insert(tmp);
auto cnt = st.size();
int m;
cin >> m;
for(int i = 1; i <= m; i++) {
cin >> tmp;
if(!mp[tmp]) cnt -= st.count(tmp);
mp[tmp] = 1;
}
cout << cnt;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int t;
t = 1;
// cin >> t;
while(t--) solve();
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3532kb
input:
I love Liaoning. Love Dalian! 1 love
output:
3
result:
ok single line: '3'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
Sulfox Loves Furry! Fur fur Furred. 2 anthropomorphic furry
output:
4
result:
ok single line: '4'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
Ginkgo leaves dance lightly and fall, reflecting the autumn light on the golden ground. Time is as peaceful as when we first met. 5 ginkgo reflect is as we
output:
17
result:
ok single line: '17'
Test #4:
score: 0
Accepted
time: 198ms
memory: 28976kb
input:
Eunuchism overterrible furbelow gantlet. Sophism thyroiditis thermoelectricity hassel misreward Barolong biradiated? Sweetie fatal delinquence unseemlily beamish inwork, azyme kamias Hans asteatosis synderesis champleve cheth? Dinitrile podial presentee! Waxmaker scleroscope ratably hectography lamp...
output:
201961
result:
ok single line: '201961'
Test #5:
score: 0
Accepted
time: 191ms
memory: 28692kb
input:
Unsubsidiary unsacrificeable hacking colberter pseudoappendicitis rufescence tumbak? Hypocrize aithochroi. Spina machar proximation? Chaperone vermicide virescent Klan preplacental unabsolvedness Sarcosporida noveletter waspishness sponge trustle bistetrazole prepositure melamed, cinephone. Physopho...
output:
201951
result:
ok single line: '201951'
Test #6:
score: 0
Accepted
time: 199ms
memory: 28904kb
input:
Baikerite discontentful semicitizen Acoemetic veracity pretechnical bloodweed cytogenetic icebound disrelishable leader meltedness heroship sciniph gunsel fatalistically unreasoned anticatarrhal? Unmentioned! Overaddiction broomy misapplication hecte inflammable disheart dicaryon blacktail prisonabl...
output:
201759
result:
ok single line: '201759'
Test #7:
score: 0
Accepted
time: 202ms
memory: 28796kb
input:
Dizoic filtering damenization bistipuled Opisthothelae multiangular blaff mortally. Perfusive alkaptonuria possessorial coinstantaneousness Stanhopea Nascan. Ankylostoma aumil oxygenicity cubhood abandonee fishman poppy pickpole synkinesis arteriosclerosis coloproctitis prematrimonial pseudoviaduct ...
output:
202281
result:
ok single line: '202281'
Test #8:
score: 0
Accepted
time: 185ms
memory: 28256kb
input:
Thelorrhagia me Camaldulian Menfra me drugman pneumonolithiasis, fructose me inwit caubeen manchet! Enjeopardy me quindecennial me unrecompensable creaturize undiverting bitty dama interteam curfew excedent me me. Revealingness Nipponism opticity suwe me stilty me antiquarism Iacchic me contrapuntal...
output:
195780
result:
ok single line: '195780'
Test #9:
score: 0
Accepted
time: 29ms
memory: 12940kb
input:
Me me me me me me me me me me me me me me me. Me me. Me. Me me me me? Me me me me me me me me, me me! Me me. Me me me me me me me me me! Me me? Me me, me? Me me me me me me me me me, me me me me me? Me, me me me me me me me me me me me me me me me me? Me me me. Me me me me me, me me me me me me me! ...
output:
0
result:
ok single line: '0'
Test #10:
score: 0
Accepted
time: 28ms
memory: 12936kb
input:
Me me? Me me me me me me me me me me me, me me me. Me me me me me me me me me me me me me. Me, me me me me me me me me. Me me me me me me me me me me. Me me me me me me me me me me me me me! Me! Me me me! Me me me me me! Me me me me me me me me me me me! Me me me me me me? Me me me me me me. Me me m...
output:
0
result:
ok single line: '0'
Test #11:
score: 0
Accepted
time: 201ms
memory: 28168kb
input:
Subsemitone me pauperdom me amphopeptone me Keplerian isopolity premaniacal logia, unseducible gulper heterostylism contumeliously prevenience, clientry theurgically supportive. Me gossipiness lately electrooptic. Me. Me, boding, putrefacient unendowing hypercryalgesia me me pluviographic Elohist me...
output:
195507
result:
ok single line: '195507'
Test #12:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
I am a cat and an ant? An ape! And Imp. And imp Is I. 3 an industrialization is
output:
8
result:
ok single line: '8'
Test #13:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
Okay. 0
output:
1
result:
ok single line: '1'
Extra Test:
score: 0
Extra Test Passed