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