結果

問題 No.69 文字を自由に並び替え
ユーザー mahiromahiro
提出日時 2020-01-11 18:51:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 100 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 71,416 KB
最終ジャッジ日時 2023-08-16 17:45:46
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,264 KB
testcase_01 AC 62 ms
71,188 KB
testcase_02 AC 62 ms
71,240 KB
testcase_03 AC 61 ms
71,276 KB
testcase_04 AC 62 ms
71,352 KB
testcase_05 AC 65 ms
71,380 KB
testcase_06 AC 61 ms
71,212 KB
testcase_07 AC 61 ms
71,264 KB
testcase_08 AC 61 ms
71,132 KB
testcase_09 AC 60 ms
71,276 KB
testcase_10 AC 63 ms
71,360 KB
testcase_11 AC 60 ms
71,284 KB
testcase_12 AC 61 ms
71,252 KB
testcase_13 AC 59 ms
71,256 KB
testcase_14 AC 61 ms
71,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = [input() for _ in range(2)]
if sorted(A) == sorted(B):
    print("YES")
else:
    print("NO")
0