結果

問題 No.400 鏡
ユーザー togaerrortogaerror
提出日時 2016-09-07 23:51:32
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 146,464 KB
実行使用メモリ 136,724 KB
最終ジャッジ日時 2024-11-24 13:28:38
合計ジャッジ時間 6,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 413 ms
136,592 KB
testcase_01 AC 421 ms
136,592 KB
testcase_02 AC 411 ms
136,592 KB
testcase_03 AC 420 ms
136,596 KB
testcase_04 AC 407 ms
136,724 KB
testcase_05 AC 403 ms
136,468 KB
testcase_06 AC 387 ms
136,592 KB
testcase_07 AC 398 ms
136,208 KB
testcase_08 AC 391 ms
136,592 KB
testcase_09 AC 392 ms
136,596 KB
testcase_10 AC 403 ms
136,592 KB
testcase_11 AC 391 ms
136,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;
my @s = get().chomp.split('');
@s = @s.splice(1, @s.elems - 2);
@s = @s.reverse;
loop (my $i = 0; $i < @s.elems; $i++) {
       	if (@s[$i] eq "<") {
       		print ">";
       	} else {
       		print "<";
       	}
}
print "\n";

exit;
0