結果

問題 No.333 門松列を数え上げ
ユーザー tsubaki961tsubaki961
提出日時 2016-05-21 17:41:08
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-06 19:21:30
合計ジャッジ時間 571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 4 ms
6,820 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 4 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 WA -
testcase_08 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Unquoted string "list" may clash with future reserved word at Main.pl line 10.
Scalar value @list[0] better written as $list[0] at Main.pl line 4.
Scalar value @list[1] better written as $list[1] at Main.pl line 4.
Scalar value @list[1] better written as $list[1] at Main.pl line 4.
Name "main::list" used only once: possible typo at Main.pl line 10.
Main.pl syntax OK

ソースコード

diff #

use strict;
my $matsu = <STDIN>;
my @list = split(/ /,$matsu);
if(@list[0] > @list[1])
{
	print 2 * (10 ** 9) - @list[1] - 1,"\n";
}
else
{
	print list[1] - 2,"\n";
}
0