結果

問題 No.69 文字を自由に並び替え
ユーザー splash9494splash9494
提出日時 2020-05-04 12:11:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 72 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 53,004 KB
最終ジャッジ日時 2024-06-24 00:55:42
合計ジャッジ時間 1,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,960 KB
testcase_01 AC 42 ms
52,176 KB
testcase_02 AC 43 ms
52,424 KB
testcase_03 AC 44 ms
52,648 KB
testcase_04 AC 42 ms
52,232 KB
testcase_05 AC 43 ms
52,732 KB
testcase_06 AC 42 ms
51,788 KB
testcase_07 AC 42 ms
52,052 KB
testcase_08 AC 45 ms
52,964 KB
testcase_09 AC 42 ms
51,692 KB
testcase_10 AC 43 ms
51,912 KB
testcase_11 AC 43 ms
52,140 KB
testcase_12 AC 43 ms
52,748 KB
testcase_13 AC 42 ms
52,148 KB
testcase_14 AC 43 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print('YES' if sorted(list(input())) == sorted(list(input())) else 'NO')
0