結果

問題 No.69 文字を自由に並び替え
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 18:08:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-06-10 18:08:33
合計ジャッジ時間 1,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,100 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,208 KB
testcase_03 AC 37 ms
52,612 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
52,152 KB
testcase_07 AC 37 ms
52,364 KB
testcase_08 AC 37 ms
52,188 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,408 KB
testcase_12 AC 37 ms
51,900 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(input()).sort()
b = list(input()).sort()
print('YES' if a == b else 'NO')
0