結果

問題 No.69 文字を自由に並び替え
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-20 14:10:30
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 347 ms / 5,000 ms
コード長 71 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 122,436 KB
実行使用メモリ 134,436 KB
最終ジャッジ日時 2023-08-20 23:27:34
合計ジャッジ時間 7,902 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
134,232 KB
testcase_01 AC 342 ms
134,436 KB
testcase_02 AC 339 ms
134,108 KB
testcase_03 AC 333 ms
134,408 KB
testcase_04 AC 341 ms
134,064 KB
testcase_05 AC 347 ms
134,064 KB
testcase_06 AC 332 ms
134,204 KB
testcase_07 AC 340 ms
134,092 KB
testcase_08 AC 343 ms
134,336 KB
testcase_09 AC 330 ms
134,036 KB
testcase_10 AC 335 ms
134,256 KB
testcase_11 AC 335 ms
134,072 KB
testcase_12 AC 331 ms
134,204 KB
testcase_13 AC 341 ms
134,360 KB
testcase_14 AC 340 ms
134,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($a, $b) = lines;
say $a.comb.sort eq $b.comb.sort ?? "YES" !! "NO";
0