/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 2ms 320.0 KiB
#2 Wrong Answer 2ms 324.0 KiB

Code

/**
*	author: shafi
*	created: 06.03.2024 16.54.05
**/
#include "bits/stdc++.h"
using namespace std;
#define ll long long int
#define ull unsigned long long int

int main(){
    ios :: sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    #ifndef ONLINE_JUDGE
        freopen("input.txt","r",stdin);
        freopen("output.txt","w",stdout);
    #endif

    int tc = 1;
    // cin>>tc;
    while(tc--){
        string str;
        cin>>str;
        string tmp = "leadinguniversity";
        sort(tmp.begin(),tmp.end());
        sort(str.begin(),str.end());
        if(str == tmp) cout<<"Leading University\n";
        else cout<<"Impossible\n";
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1024 Rearrange Character
Contest
Brain booster #2
Language
C++20 (G++ 13.2.0)
Submit At
2024-03-06 15:58:29
Judged At
2024-11-11 03:41:29
Judged By
Score
0
Total Time
2ms
Peak Memory
324.0 KiB