結果

問題 No.163 cAPSlOCK
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 22:35:44
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 367 ms / 5,000 ms
コード長 92 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 125,244 KB
実行使用メモリ 134,176 KB
最終ジャッジ日時 2023-08-16 03:47:39
合計ジャッジ時間 10,633 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
133,652 KB
testcase_01 AC 353 ms
133,624 KB
testcase_02 AC 353 ms
134,020 KB
testcase_03 AC 367 ms
133,680 KB
testcase_04 AC 358 ms
133,660 KB
testcase_05 AC 360 ms
134,176 KB
testcase_06 AC 355 ms
133,624 KB
testcase_07 AC 356 ms
133,664 KB
testcase_08 AC 359 ms
133,828 KB
testcase_09 AC 357 ms
133,912 KB
testcase_10 AC 358 ms
133,484 KB
testcase_11 AC 360 ms
134,012 KB
testcase_12 AC 360 ms
133,616 KB
testcase_13 AC 352 ms
133,872 KB
testcase_14 AC 359 ms
133,608 KB
testcase_15 AC 353 ms
133,792 KB
testcase_16 AC 357 ms
133,904 KB
testcase_17 AC 355 ms
133,804 KB
testcase_18 AC 356 ms
133,660 KB
testcase_19 AC 365 ms
133,856 KB
testcase_20 AC 360 ms
133,872 KB
testcase_21 AC 361 ms
133,596 KB
testcase_22 AC 363 ms
133,604 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

get().split("")
     .map({$_.uc() eq $_ ?? $_.lc() !! $_.uc()})
     .join("")
     .say();
0