結果

問題 No.69 文字を自由に並び替え
ユーザー akihito0000akihito0000
提出日時 2016-08-14 18:25:24
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 6,760 KB
実行使用メモリ 6,108 KB
最終ジャッジ日時 2023-09-09 21:03:56
合計ジャッジ時間 1,282 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 10 ms
5,956 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 10 ms
6,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 10 ms
6,048 KB
testcase_10 AC 10 ms
6,008 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 10 ms
5,836 KB
testcase_14 AC 10 ms
5,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

A = list(raw_input())
B = list(raw_input())
A.sort()
B.sort()

if A is B:
       	print "YES"
else:
       	print "NO"
0