結果

問題 No.451 575
ユーザー tailstails
提出日時 2016-12-02 00:22:20
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-05-09 16:57:41
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 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 30 ms
6,656 KB
testcase_06 AC 101 ms
9,344 KB
testcase_07 AC 536 ms
31,232 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 5 ms
5,504 KB
testcase_10 AC 42 ms
11,904 KB
testcase_11 AC 121 ms
25,088 KB
testcase_12 AC 158 ms
31,360 KB
testcase_13 AC 111 ms
31,360 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 9 ms
6,400 KB
testcase_21 AC 5 ms
5,632 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 162 ms
31,360 KB
testcase_24 AC 94 ms
20,608 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 53 ms
7,424 KB
testcase_30 WA -
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 174 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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