結果
問題 | No.69 文字を自由に並び替え |
ユーザー | sntea |
提出日時 | 2015-08-26 14:54:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 783 bytes |
コンパイル時間 | 610 ms |
コンパイル使用メモリ | 74,288 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 04:57:20 |
合計ジャッジ時間 | 1,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <cmath> #include <climits> #include <string> #include <vector> #include <functional> #include <algorithm> #include <sstream> #include <map> #include <set> #include <utility> #define endl '\n' #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) using namespace std; typedef pair<int,int> P; typedef long long int LL; int counta[26]; int countb[26]; int main() { ios::sync_with_stdio(false); cin.tie(0); string A,B; cin>>A; cin>>B; REP(i,SZ(A)){ counta[A[i]-'a']++; } REP(i,SZ(B)){ countb[B[i]-'a']++; } string ans="YES"; REP(i,26){ //cout<<counta[i]<<' '<<countb[i]<<endl; if(counta[i]!=countb[i]) ans="NO"; } cout<<ans<<endl; return 0; }