結果
問題 | No.69 文字を自由に並び替え |
ユーザー | tokizo |
提出日時 | 2018-01-09 11:26:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 794 bytes |
コンパイル時間 | 1,046 ms |
コンパイル使用メモリ | 80,160 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-14 06:54:35 |
合計ジャッジ時間 | 1,661 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <math.h> #include <algorithm> #include <functional> #include <vector> #include <typeinfo> #include <climits> #include <ctype.h> #include <string> using namespace std; #define INIT cin.tie(0); ios::sync_with_stdio(false); #define FOR(i, a, n) for (int i = a; i < n; i++) #define REP(i, n) for(int i = 0; i < n; i++) int main() { INIT; string a; string b; cin >> a >> b; int A[a.size()], B[b.size()]; REP(i, a.size()){ A[i] = char(a[i]); B[i] = char(b[i]); } sort(A, A + a.size()); sort(B, B + b.size()); int f = 1; REP(i, a.size()){ if(A[i] != B[i]){ f = 0; break; } } if(f == 1) cout << "YES" << endl; else cout << "NO" << endl; return 0; }