mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
parent
992ee0ae8b
commit
912e58eb1f
19
HDOJ/5842_lyhylex.cpp
Normal file
19
HDOJ/5842_lyhylex.cpp
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
///好厉害~!来自lyhylex (CSDN)
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstring>
|
||||||
|
#include <algorithm>
|
||||||
|
using namespace std;
|
||||||
|
char s[100000 + 9];
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int ca = 1, t;
|
||||||
|
scanf("%d", &t);
|
||||||
|
while (t--)
|
||||||
|
{
|
||||||
|
scanf("%s", s);
|
||||||
|
int n = strlen(s);
|
||||||
|
sort(s, s + n);
|
||||||
|
printf("Case #%d: %d\n", ca++, unique(s, s + n) - s);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user