Submission
Status:
----------
Subtask/Task Score:
0/100
Score: 0
User: asdasd
Problemset: อะนาแกรม 1
Language: cpp
Time: 0.002 second
Submitted On: 2025-10-13 08:25:34
#include <iostream>
using namespace std;
int main(){
string word;
cin>>word;
int arr[128]={0};
for(int i = 0 ; i<word.length() ; i++){
arr[word[i]] += 1;
}
for(char j = 'A' ; j<='F' ; j++){
cout<<arr[j]<<" ";
}
}