結果

問題 No.69 文字を自由に並び替え
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:47:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 53,220 KB
最終ジャッジ日時 2024-12-17 15:37:37
合計ジャッジ時間 1,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,152 KB
testcase_01 AC 34 ms
53,032 KB
testcase_02 AC 35 ms
52,220 KB
testcase_03 AC 35 ms
52,048 KB
testcase_04 AC 36 ms
52,488 KB
testcase_05 AC 34 ms
53,136 KB
testcase_06 AC 35 ms
51,880 KB
testcase_07 AC 35 ms
51,824 KB
testcase_08 AC 35 ms
52,088 KB
testcase_09 AC 33 ms
51,904 KB
testcase_10 AC 33 ms
53,220 KB
testcase_11 AC 34 ms
52,840 KB
testcase_12 AC 35 ms
52,304 KB
testcase_13 AC 33 ms
53,008 KB
testcase_14 AC 33 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=sorted(list(input()))
B=sorted(list(input()))
if A==B:
	print("YES")
else:
	print("NO")
0