QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#410549#46. PiratesNevll50 ✓1ms3684kbC++14405b2024-05-14 09:09:372024-05-14 09:09:38

Judging History

你现在查看的是最新测评结果

  • [2024-05-14 09:09:38]
  • 评测
  • 测评结果:50
  • 用时:1ms
  • 内存:3684kb
  • [2024-05-14 09:09:37]
  • 提交

answer

# include <bits/stdc++.h>
# define ll long long
# define fi first
# define se second
# define pii pair<int, int>
using namespace std;

int main() {
	int N;
	string S;
	cin>>N>>S;
	vector<int> cnt(26, 0);
	for(int i=0;i<N;i++) cnt[S[i] - 'a']++;
	int mx = 0;
	char idx;
	for(int i=0;i<26;i++) {
		if(mx < cnt[i]) {
			mx = cnt[i];
			idx = 'a' + i;
		}
	}
	cout<<idx<<" "<<mx<<"\n";
}

詳細信息

Test #1:

score: 2.5
Accepted
time: 0ms
memory: 3472kb

input:

1
a

output:

a 1

result:

ok single line: 'a 1'

Test #2:

score: 2.5
Accepted
time: 1ms
memory: 3496kb

input:

50
hpdoypydsjjbrflbqehxgvyyyqhtzsawrlpfgpwztepgsapffw

output:

p 6

result:

ok single line: 'p 6'

Test #3:

score: 2.5
Accepted
time: 1ms
memory: 3472kb

input:

50
ekxzicouuxfoaafacrevbzrkjqnzauhcguihkntnilgiphgase

output:

a 5

result:

ok single line: 'a 5'

Test #4:

score: 2.5
Accepted
time: 0ms
memory: 3528kb

input:

50
lwqahlveuyleogcdgpshnkeqkmlrnctvymyjuablpvgnitclxo

output:

l 6

result:

ok single line: 'l 6'

Test #5:

score: 2.5
Accepted
time: 0ms
memory: 3532kb

input:

50
ygrmrrfkwbkorubwjxqxzeprbtfuhlvvrpqznkuhvjbokuqtsr

output:

r 7

result:

ok single line: 'r 7'

Test #6:

score: 2.5
Accepted
time: 0ms
memory: 3492kb

input:

50
pqntqusybvefkspypzqoqspqzimkmlkknhzmbwaafjdyemvcvg

output:

q 5

result:

ok single line: 'q 5'

Test #7:

score: 2.5
Accepted
time: 0ms
memory: 3500kb

input:

100
zmcydqewcegjhihditaigyjdcfskgispkutzqbbdhfegynhbrtrnopvfpengixwvzvjriiaabzawgqwoxkvdsqteylruefuiyhcn

output:

i 8

result:

ok single line: 'i 8'

Test #8:

score: 2.5
Accepted
time: 1ms
memory: 3456kb

input:

100
owkfuohimmfmajqcnoljqcipvrzvrfkifyqjjuxqqqfagclhsyltvfqtlbysgmtuvqsuwaesuyujakfxpthjuojyaaqollepmcpb

output:

q 9

result:

ok single line: 'q 9'

Test #9:

score: 2.5
Accepted
time: 0ms
memory: 3620kb

input:

200
kvirktyytcmbfwsabtbqfzvilpfsgshteqydzprftopcwwswcrnehokavyjscjpaeyqmhokqfsqntjpbvpuievovrfgkwpwepdoiwygybrghatskyfxezfrbhzkbulbvwwrgielieisetpwkgsmkolyttljcbifbawcvcmnvnjakwyothqzlfljlxmmlgbxieldgqdhl

output:

w 12

result:

ok single line: 'w 12'

Test #10:

score: 2.5
Accepted
time: 0ms
memory: 3440kb

input:

201
fzyivvcgrjqwwzgxhpjivechkodbwpsxjczeokztzmzdefiymyozyqmbveexafysklcdmnockyxsqxonxtaghhlzqmowiabteggbtlxyirzybxomvlchicnfpeanepalzndmcktkzchdiodcrfkiktowdlfrivjrjpetlpivdzbeggykmvkepfrrvvhozsisqkchgmlmj

output:

z 13

result:

ok single line: 'z 13'

Test #11:

score: 2.5
Accepted
time: 0ms
memory: 3676kb

input:

500
irtdljupgnqevbfzxdtwgogixkuucukrzgliqrfmbapiagzrlufjrnsdzrxzfmpbhazzjuahdrfqrwghpwbdgugozuqmjyapibqrwckaggqcxglpvmlufkjghxfaggzekmmkazjhbzrvnhfzofqrrrgvighqkhgdkmvvimakmfqrppckzkljqhzksolkclureqqadczvnezxkcigroshbgbtnftkgqmywsomimrtnazdldficdmkskbrdtsuhnzhzlfipgbvarwirvznkwmzbyaabiecxrmxhkstbplw...

output:

z 28

result:

ok single line: 'z 28'

Test #12:

score: 2.5
Accepted
time: 0ms
memory: 3472kb

input:

2
aa

output:

a 2

result:

ok single line: 'a 2'

Test #13:

score: 2.5
Accepted
time: 0ms
memory: 3684kb

input:

500
lknpfgrsbgkhtiqbervsfpjqhlsohirospfwtsdqxajhdlhcqdxqbfaiqfjbovenbigxreehxdviloprpvdbkcaogkvtrqacieirxfwxypkcsbumaulhoaqnghvgrkhkrioxihczovooeqsianwkffagmgmadvffnaemvarsfdhmrxcwwcssclgahzuhpjkxrzdfljajsghlsjcvzekilegfaioddntzatwudwtxsugyhelutshdslchiymhmkebinngpbqtpybktjyaepjuvgauqzsijbnbrqezifte...

output:

a 27

result:

ok single line: 'a 27'

Test #14:

score: 2.5
Accepted
time: 0ms
memory: 3444kb

input:

3
xyy

output:

y 2

result:

ok single line: 'y 2'

Test #15:

score: 2.5
Accepted
time: 0ms
memory: 3496kb

input:

3
aba

output:

a 2

result:

ok single line: 'a 2'

Test #16:

score: 2.5
Accepted
time: 1ms
memory: 3684kb

input:

10
ktuonxnmrf

output:

n 2

result:

ok single line: 'n 2'

Test #17:

score: 2.5
Accepted
time: 0ms
memory: 3504kb

input:

10
tjsgrjpndc

output:

j 2

result:

ok single line: 'j 2'

Test #18:

score: 2.5
Accepted
time: 0ms
memory: 3468kb

input:

10
ktkyfdttcc

output:

t 3

result:

ok single line: 't 3'

Test #19:

score: 2.5
Accepted
time: 0ms
memory: 3496kb

input:

10
bbatscqewm

output:

b 2

result:

ok single line: 'b 2'

Test #20:

score: 2.5
Accepted
time: 1ms
memory: 3424kb

input:

10
eptazubsuj

output:

u 2

result:

ok single line: 'u 2'