Accepted
Code
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string s;
cin>>s;
string target="leadinguniversity";
sort(s.begin(),s.end());
sort(target.begin(),target.end());
if(s==target)
{
cout<<"Leading University"<<endl;
}
else
{
cout<<"Impossible"<<endl;
}
}
Information
- Submit By
- Type
- Pretest
- Problem
- P1024 Rearrange Character
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-03-06 13:15:36
- Judged At
- 2024-11-11 03:42:43
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes