結果
| 問題 | No.69 文字を自由に並び替え | 
| コンテスト | |
| ユーザー |  41Toame | 
| 提出日時 | 2018-02-22 19:03:53 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 692 bytes | 
| コンパイル時間 | 1,443 ms | 
| コンパイル使用メモリ | 159,432 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-14 06:57:14 | 
| 合計ジャッジ時間 | 2,045 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 15 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define rep(i,n) for( int i = 0; i < n; i++ )
#define dump(x)  cerr << #x << " = " << (x) << endl;
#define INF 2000000000
#define mod 1000000007
#define INF2 1000000000000000000
int main(void)
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    string S, T;
    cin >> S >> T;
    int cntS[26] = {};
    int cntT[26] = {};
    rep(i, S.length()) cntS[S[i] - 'a']++;
    rep(i, T.length()) cntT[T[i] - 'a']++;
    rep(i, 26) {
        //dump(cntS[i]); dump(cntT[i]);
        if (cntS[i] != cntT[i]) {
            cout << "NO" << endl;
            return 0;
        }
    }
    cout << "YES" << endl;
    return 0;
}
            
            
            
        