結果

問題 No.69 文字を自由に並び替え
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-22 15:44:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 55,520 KB
最終ジャッジ日時 2024-07-23 16:36:22
合計ジャッジ時間 2,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,860 KB
testcase_01 AC 40 ms
54,212 KB
testcase_02 AC 40 ms
54,080 KB
testcase_03 AC 40 ms
53,844 KB
testcase_04 AC 42 ms
53,892 KB
testcase_05 AC 41 ms
54,244 KB
testcase_06 AC 40 ms
53,728 KB
testcase_07 AC 40 ms
55,268 KB
testcase_08 AC 41 ms
53,412 KB
testcase_09 AC 41 ms
54,560 KB
testcase_10 AC 40 ms
54,292 KB
testcase_11 AC 40 ms
54,008 KB
testcase_12 AC 40 ms
53,292 KB
testcase_13 AC 40 ms
55,520 KB
testcase_14 AC 41 ms
55,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = str(input())
b = str(input())

from collections import Counter
ca = Counter(a)
cb = Counter(b)
ca = list(ca.items())
cb = list(cb.items())
ca.sort()
cb.sort()
if ca == cb:
    print('YES')
else:
    print('NO')
0