結果

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

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <algorithm>

using ll = long long int;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

std::string s,t="kyoprotenkei90";

int main(void){
	std::cin >> s;
	std::sort(s.begin(),s.end());
	std::sort(t.begin(),t.end());
	std::cout << ((s==t)?"Yes":"No") << std::endl;
	return 0;
}
0