結果
問題 | No.69 文字を自由に並び替え |
ユーザー | 41Toame |
提出日時 | 2018-02-22 19:03:27 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
ソースコード
#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; }