結果

問題 No.69 文字を自由に並び替え
ユーザー go_boardwalkgo_boardwalk
提出日時 2017-04-01 02:15:48
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 15,940 KB
最終ジャッジ日時 2023-08-20 23:37:58
合計ジャッジ時間 2,062 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
15,656 KB
testcase_01 AC 55 ms
15,768 KB
testcase_02 AC 53 ms
15,868 KB
testcase_03 AC 53 ms
15,684 KB
testcase_04 AC 53 ms
15,788 KB
testcase_05 AC 53 ms
15,772 KB
testcase_06 AC 52 ms
15,880 KB
testcase_07 AC 53 ms
15,724 KB
testcase_08 AC 54 ms
15,940 KB
testcase_09 AC 54 ms
15,720 KB
testcase_10 AC 55 ms
15,664 KB
testcase_11 AC 53 ms
15,860 KB
testcase_12 AC 54 ms
15,872 KB
testcase_13 AC 53 ms
15,724 KB
testcase_14 AC 52 ms
15,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define A (symbol->string (read)))
(define B (symbol->string (read)))

(print (if (equal? (sort A) (sort B)) "YES" "NO"))
0