結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー togaerrortogaerror
提出日時 2015-03-25 19:28:20
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 5,328 KB
実行使用メモリ 5,064 KB
最終ジャッジ日時 2023-09-11 10:12:07
合計ジャッジ時間 810 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use warnings;
use strict;

my $str = <>;
chomp $str;
my @array = split //, $str;
@array = reverse @array;

print @array;
print "\n";

exit;
0