結果

問題 No.909 たぴの配置
ユーザー tailstails
提出日時 2019-10-18 22:40:57
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,241 ms / 3,000 ms
コード長 167 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-06-25 17:47:51
合計ジャッジ時間 12,952 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,144 KB
testcase_01 AC 7 ms
6,144 KB
testcase_02 AC 7 ms
6,016 KB
testcase_03 AC 7 ms
6,016 KB
testcase_04 AC 8 ms
6,016 KB
testcase_05 AC 1,241 ms
74,004 KB
testcase_06 AC 1,201 ms
76,384 KB
testcase_07 AC 1,009 ms
71,116 KB
testcase_08 AC 993 ms
74,112 KB
testcase_09 AC 990 ms
76,436 KB
testcase_10 AC 889 ms
70,980 KB
testcase_11 AC 878 ms
70,132 KB
testcase_12 AC 923 ms
73,824 KB
testcase_13 AC 919 ms
76,208 KB
testcase_14 AC 850 ms
71,120 KB
testcase_15 AC 859 ms
70,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
@x=glob<>;
@y=glob<>;
$d=2e6;
for(0..$n-1){
	$a=$x[$_]+$y[$_];
	$d=$d<$a?$d:$a;
}
print $d,$/;
print 0,$/;
for(0..$n-1){
	print $-=$d-$y[$_],$/;
}
print $d,$/;
0