-
Notifications
You must be signed in to change notification settings - Fork 0
/
1043_out_PAT.cpp
71 lines (70 loc) · 1.23 KB
/
1043_out_PAT.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main()
{
char src[10001];
int det[6];
cin.getline(src,10001);
for(int i=0;i<strlen(src);i++)
{
if(src[i]=='P')
{
det[0]++;
}
if(src[i]=='A')
{
det[1]++;
}
if(src[i]=='T')
{
det[2]++;
}
if(src[i]=='e')
{
det[3]++;
}
if(src[i]=='s')
{
det[4]++;
}
if(src[i]=='t')
{
det[5]++;
}
}
while(det[0]||det[1]||det[2]||det[3]||det[4]||det[5])
{
if(det[0]!=0)
{
cout<<'P';
det[0]--;
}
if(det[1]!=0)
{
cout<<'A';
det[1]--;
}
if(det[2]!=0)
{
cout<<'T';
det[2]--;
}
if(det[3]!=0)
{
cout<<'e';
det[3]--;
}
if(det[4]!=0)
{
cout<<'s';
det[4]--;
}
if(det[5]!=0)
{
cout<<'t';
det[5]--;
}
}
}