結果
| 問題 |
No.69 文字を自由に並び替え
|
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2023-07-05 06:06:15 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 38 ms / 5,000 ms |
| コード長 | 96 bytes |
| コンパイル時間 | 160 ms |
| コンパイル使用メモリ | 81,976 KB |
| 実行使用メモリ | 53,164 KB |
| 最終ジャッジ日時 | 2024-07-19 00:31:00 |
| 合計ジャッジ時間 | 1,185 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
A = list(input())
B = list(input())
if sorted(A) == sorted(B):
print("YES")
else:
print("NO")
310icecrystal