結果

問題 No.1592 Tenkei 90
ユーザー You_saku
提出日時 2021-09-17 23:44:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 465 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 96,104 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 22:38:30
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<ios>
#include<iomanip> 
#include<cmath>
#include<limits>
#include<algorithm>

using namespace std;

int main(){
    string s;
    cin >> s;
    int size = s.size();
    string ans = "kyoprotenkei90";
    sort(ans.begin(), ans.end());
    sort(s.begin(), s.end());
    if(ans == s){
        cout << "Yes" << endl;
    }else{
        cout << "No" << endl;
    }
    return 0;
}
0