結果

問題 No.69 文字を自由に並び替え
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-20 14:10:30
言語 Raku
(rakudo v2024.12)
結果
AC  
実行時間 385 ms / 5,000 ms
コード長 71 bytes
コンパイル時間 2,849 ms
コンパイル使用メモリ 132,484 KB
実行使用メモリ 142,264 KB
最終ジャッジ日時 2024-12-14 06:21:48
合計ジャッジ時間 8,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
140,988 KB
testcase_01 AC 367 ms
140,984 KB
testcase_02 AC 369 ms
140,732 KB
testcase_03 AC 361 ms
140,988 KB
testcase_04 AC 364 ms
140,728 KB
testcase_05 AC 362 ms
141,112 KB
testcase_06 AC 371 ms
142,264 KB
testcase_07 AC 366 ms
140,860 KB
testcase_08 AC 367 ms
140,988 KB
testcase_09 AC 368 ms
140,856 KB
testcase_10 AC 367 ms
140,860 KB
testcase_11 AC 366 ms
140,984 KB
testcase_12 AC 374 ms
140,604 KB
testcase_13 AC 371 ms
140,856 KB
testcase_14 AC 367 ms
140,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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