結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,376 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 32 ms
6,656 KB
testcase_06 AC 96 ms
9,472 KB
testcase_07 AC 525 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 123 ms
25,216 KB
testcase_12 AC 160 ms
31,360 KB
testcase_13 AC 112 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 10 ms
6,400 KB
testcase_21 AC 5 ms
5,504 KB
testcase_22 WA -
testcase_23 AC 160 ms
31,616 KB
testcase_24 AC 94 ms
20,608 KB
testcase_25 AC 4 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 WA -
testcase_32 AC 170 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<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