結果

問題 No.1150 シュークリームゲーム(Easy)
ユーザー tailstails
提出日時 2020-08-07 22:53:42
言語 Perl
(5.38.2)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-09-24 23:17:16
合計ジャッジ時間 7,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 8 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 233 ms
26,368 KB
testcase_23 AC 235 ms
26,624 KB
testcase_24 AC 222 ms
25,216 KB
testcase_25 AC 239 ms
26,112 KB
testcase_26 AC 269 ms
28,544 KB
testcase_27 AC 268 ms
28,800 KB
testcase_28 AC 283 ms
29,696 KB
testcase_29 AC 242 ms
25,600 KB
testcase_30 AC 259 ms
27,520 KB
testcase_31 AC 258 ms
26,624 KB
testcase_32 AC 255 ms
26,368 KB
testcase_33 AC 274 ms
27,648 KB
testcase_34 AC 290 ms
28,544 KB
testcase_35 AC 294 ms
28,800 KB
testcase_36 AC 308 ms
29,440 KB
testcase_37 AC 315 ms
29,824 KB
testcase_38 AC 266 ms
25,856 KB
testcase_39 AC 273 ms
25,856 KB
testcase_40 AC 288 ms
27,520 KB
testcase_41 AC 311 ms
29,184 KB
testcase_42 AC 181 ms
30,976 KB
testcase_43 AC 175 ms
30,976 KB
testcase_44 AC 175 ms
29,696 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;$g=1;
($s,$t,$g)=($t,$s,-1)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*=$g;
$z+=abs(($a==$d?0:$a[$d%$n])-($c==$b-$n?0:$a[$b%$n]));
print $z;
0