結果
問題 |
No.69 文字を自由に並び替え
|
ユーザー |
|
提出日時 | 2020-09-10 15:59:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 147 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-12-23 11:17:32 |
合計ジャッジ時間 | 1,419 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 WA * 2 |
ソースコード
base = str(input()) diff = str(input()) if sum(bytearray(base.encode())) == sum(bytearray(diff.encode())): print('YES') else: print('NO')