結果

問題 No.69 文字を自由に並び替え
ユーザー go_boardwalkgo_boardwalk
提出日時 2017-04-01 02:19:43
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 98 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-05-08 05:24:05
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
22,016 KB
testcase_01 AC 66 ms
22,016 KB
testcase_02 AC 65 ms
22,144 KB
testcase_03 AC 67 ms
22,144 KB
testcase_04 AC 71 ms
22,016 KB
testcase_05 AC 67 ms
22,144 KB
testcase_06 AC 67 ms
22,016 KB
testcase_07 AC 67 ms
22,144 KB
testcase_08 AC 64 ms
22,144 KB
testcase_09 AC 68 ms
22,144 KB
testcase_10 AC 69 ms
22,144 KB
testcase_11 AC 68 ms
22,144 KB
testcase_12 AC 67 ms
22,144 KB
testcase_13 AC 66 ms
22,144 KB
testcase_14 AC 66 ms
22,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define A (read-line))
(define B (read-line))

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