結果
問題 | No.1592 Tenkei 90 |
ユーザー | ikashoppin |
提出日時 | 2021-07-09 21:25:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 744 bytes |
コンパイル時間 | 2,050 ms |
コンパイル使用メモリ | 195,656 KB |
最終ジャッジ日時 | 2025-01-22 20:42:20 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> using namespace std; using lli = long long; #define rep(i,n) for(int i=0;i<n;i++) template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } template<class T> ostream &operator<<(ostream &os, const vector<T> &x){ os << "{"; for(size_t i = 0; i < x.size(); i++){ if(i < x.size()-1) os << x[i] << ", "; else os << x[i]; } os << "}"; return os; } int main(void){ 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; return 0; }