結果

問題 No.69 文字を自由に並び替え
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-04-02 08:33:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 136 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 81,612 KB
実行使用メモリ 55,292 KB
最終ジャッジ日時 2024-06-28 02:27:02
合計ジャッジ時間 1,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,436 KB
testcase_01 AC 42 ms
53,896 KB
testcase_02 AC 43 ms
54,248 KB
testcase_03 AC 41 ms
54,924 KB
testcase_04 AC 42 ms
54,600 KB
testcase_05 AC 40 ms
53,940 KB
testcase_06 AC 42 ms
54,916 KB
testcase_07 AC 41 ms
54,268 KB
testcase_08 AC 39 ms
55,292 KB
testcase_09 AC 41 ms
53,576 KB
testcase_10 AC 41 ms
53,524 KB
testcase_11 AC 41 ms
54,048 KB
testcase_12 AC 41 ms
54,612 KB
testcase_13 AC 41 ms
54,056 KB
testcase_14 AC 41 ms
54,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

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

print('YES') if collections.Counter(a) == collections.Counter(b) else print('NO')
0