結果

問題 No.1592 Tenkei 90
ユーザー hiikunZ
提出日時 2021-07-09 21:22:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 198,408 KB
最終ジャッジ日時 2025-01-22 20:28:03
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long int;
using ld = long double;
const ll MAX = 5000000000000000000;
const ld PI = 3.14159265358979;
const ll MOD = 0;//2024948111;
random_device rd;
mt19937 mt(rd());
ld dotorad(ld K){return PI * K / 180.0;}
ld radtodo(ld K){return K * 180.0 / PI;}
int main(){
    string S;
    cin >> S;
    string T = "kyoprotenkei90";
    sort(S.begin(),S.end());
    sort(T.begin(),T.end());
    if(S == T) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0