結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
Kaz_nl
|
| 提出日時 | 2017-08-16 20:24:40 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 394 bytes |
| コンパイル時間 | 511 ms |
| コンパイル使用メモリ | 57,564 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 06:43:02 |
| 合計ジャッジ時間 | 1,095 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int a[26];
int b[26];
int main() {
string A, B;
bool is_same = true;
cin >> A >> B;
for (auto& c : A) a[c-'a']++;
for (auto& c : B) b[c-'a']++;
for (size_t i = 0; i < 26; i++) {
if (a[i] != b[i]) {
is_same = false;
}
}
if (is_same) {
cout << "YES" << endl;
} else {
cout << "NO" << endl;
}
}
Kaz_nl