結果

問題 No.1120 Strange Teacher
ユーザー tailstails
提出日時 2020-07-22 21:58:13
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 7,324 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-06-22 16:24:59
合計ジャッジ時間 9,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 8 ms
6,944 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 62 ms
9,472 KB
testcase_04 AC 544 ms
41,180 KB
testcase_05 AC 517 ms
41,176 KB
testcase_06 AC 492 ms
41,164 KB
testcase_07 AC 513 ms
41,180 KB
testcase_08 AC 476 ms
41,056 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 507 ms
41,052 KB
testcase_11 AC 510 ms
41,176 KB
testcase_12 AC 465 ms
41,056 KB
testcase_13 AC 462 ms
41,048 KB
testcase_14 AC 450 ms
41,052 KB
testcase_15 AC 447 ms
41,180 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 8 ms
6,016 KB
testcase_19 AC 360 ms
41,280 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 7 ms
5,888 KB
testcase_23 AC 7 ms
6,016 KB
testcase_24 AC 342 ms
40,772 KB
testcase_25 AC 8 ms
5,888 KB
testcase_26 AC 7 ms
5,888 KB
testcase_27 AC 7 ms
6,016 KB
testcase_28 AC 8 ms
5,888 KB
testcase_29 AC 7 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::u" used only once: possible typo at Main.pl line 15.
Main.pl syntax OK

ソースコード

diff #

sub muri { print -1; exit; }

$n=<>;
@a=glob<>;
@b=glob<>;
for(0..$n-1){
	$s-=$b[$_]-=$a[$_];
}

$n==2 ? $s==0 : $s%($n-2)==0 or muri;

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

$s==$t or muri;
print $s;
0