結果

問題 No.1120 Strange Teacher
ユーザー tailstails
提出日時 2020-07-22 22:14:59
言語 Perl
(5.38.2)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 323 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-06-22 18:39:40
合計ジャッジ時間 3,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 15 ms
8,192 KB
testcase_04 AC 123 ms
32,768 KB
testcase_05 AC 121 ms
32,768 KB
testcase_06 AC 121 ms
32,768 KB
testcase_07 AC 121 ms
32,768 KB
testcase_08 AC 119 ms
32,768 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 93 ms
29,568 KB
testcase_11 AC 94 ms
29,568 KB
testcase_12 AC 94 ms
29,568 KB
testcase_13 AC 94 ms
29,568 KB
testcase_14 AC 93 ms
29,568 KB
testcase_15 AC 94 ms
29,568 KB
testcase_16 AC 94 ms
29,568 KB
testcase_17 AC 94 ms
29,568 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 123 ms
33,024 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 121 ms
32,512 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 4 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub muri { print -1; exit; }

$n=<>;
@a=<>=~/\S+/g;
@b=<>=~/\S+/g;
for(0..$n-1){
	$s-=$b[$_]-=$a[$_];
}

if($n==2){
	$s==0 or muri;
	$t=abs$b[0];
}else{
	$s>=0 or muri;
	$s%($n-2)==0 or muri;
	$s/=$n-2;
	for(0..$n-1){
		$b[$_]+=$s;
		$b[$_]>=0 or muri;
		$b[$_]&1 and muri;
		$t+=$b[$_]/2;
	}
	$s==$t or muri;
}

print $t;
0