結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;

int main(){
  string s;
  cin >> s;
  string t = "kyoprotenkei90";
  map<char,int> mps, mpt;
  for(auto c : t) mpt[c]++;
  for(auto c : s) mps[c]++;
  bool can = true;
  for(auto x : mpt) if(x.second != mps[x.first]) can = false;
  cout << (can ? "Yes" : "No") << endl;
  return 0;
}
0