結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
あかりき
|
| 提出日時 | 2021-02-08 07:16:10 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 5,000 ms |
| コード長 | 93 bytes |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 81,952 KB |
| 実行使用メモリ | 53,232 KB |
| 最終ジャッジ日時 | 2024-07-05 02:58:05 |
| 合計ジャッジ時間 | 1,605 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
a=list(input())
b=list(input())
a.sort()
b.sort()
if a==b:
print('YES')
else:
print('NO')
あかりき