結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー tailstails
提出日時 2020-08-07 22:01:21
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-09-24 20:09:14
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 6 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 6 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 232 ms
26,496 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 225 ms
26,240 KB
testcase_26 AC 259 ms
28,544 KB
testcase_27 AC 257 ms
28,928 KB
testcase_28 WA -
testcase_29 AC 227 ms
25,728 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 273 ms
28,672 KB
testcase_35 AC 281 ms
28,928 KB
testcase_36 AC 284 ms
29,568 KB
testcase_37 WA -
testcase_38 AC 257 ms
25,984 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 169 ms
30,976 KB
testcase_43 AC 169 ms
30,976 KB
testcase_44 AC 171 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub f{
	my($i,$j,$s)=@_;
	$s+=$a[$_%$n]for$i..$j-1;
	$s
}


$n=<>;
($s,$t)=glob<>;
--$s;--$t;
($s,$t)=($t,$s)if$s>$t;
@a=glob<>;

$z=f($a=$s+$t+$n+2>>1,$b=$s+$t+$n*2+1>>1)- f($c=$s+$t+2>>1,$d=$s+$t+$n+1>>1);

$z+=abs(($a==$d?0:$a[$d])-($c==$b-$n?0:$a[$b-$n]));
print $z;
0