結果

問題 No.451 575
ユーザー tailstails
提出日時 2016-12-02 01:03:34
言語 Perl
(5.38.2)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-05-09 18:28:28
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 12 ms
6,400 KB
testcase_06 AC 29 ms
9,344 KB
testcase_07 AC 114 ms
30,976 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 37 ms
11,904 KB
testcase_11 AC 119 ms
25,344 KB
testcase_12 AC 153 ms
31,360 KB
testcase_13 AC 114 ms
31,360 KB
testcase_14 AC 3 ms
5,504 KB
testcase_15 AC 7 ms
6,144 KB
testcase_16 AC 24 ms
8,832 KB
testcase_17 AC 132 ms
27,136 KB
testcase_18 AC 95 ms
27,136 KB
testcase_19 AC 91 ms
19,712 KB
testcase_20 AC 9 ms
6,400 KB
testcase_21 AC 5 ms
5,504 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 157 ms
31,360 KB
testcase_24 AC 93 ms
20,736 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,504 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 17 ms
7,552 KB
testcase_30 AC 134 ms
27,136 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 40 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$e=1e18|0;
($n,@b)=<>;
@a=1;
for(0..1){
	$m=$o=$a[0];
	for(0..$#b){
		$v=$a[$_+1]=($b[$_]-$a[$_])*(-1)**$_;
		$v=$e+1-$v if $_%4==1||$_%4==2;
		$m=$v if $m>$v;
		$o=$v if $o<$v;
	}
	if($m<1){
		$a[0]+=1-$m;
	}elsif($o>$e){
		$a[0]-=$o-$e;
	}else{
		print join$/,$n+1,@a;
		exit;
	}
	last if $a[0]<1||$a[0]>$e;
}
print -1;
0