結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
41Toame
|
| 提出日時 | 2018-02-22 19:03:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 692 bytes |
| コンパイル時間 | 1,671 ms |
| コンパイル使用メモリ | 159,332 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-27 13:52:14 |
| 合計ジャッジ時間 | 1,887 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 9 |
ソースコード
#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;
}
41Toame