結果

問題 No.909 たぴの配置
ユーザー tailstails
提出日時 2019-10-18 22:42:59
言語 Perl
(5.38.2)
結果
AC  
実行時間 161 ms / 3,000 ms
コード長 176 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-06-25 17:51:11
合計ジャッジ時間 4,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 161 ms
48,896 KB
testcase_06 AC 153 ms
50,432 KB
testcase_07 AC 143 ms
46,848 KB
testcase_08 AC 149 ms
48,896 KB
testcase_09 AC 155 ms
50,432 KB
testcase_10 AC 142 ms
46,976 KB
testcase_11 AC 142 ms
46,464 KB
testcase_12 AC 148 ms
48,768 KB
testcase_13 AC 153 ms
50,432 KB
testcase_14 AC 145 ms
46,848 KB
testcase_15 AC 139 ms
46,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
@x=split/ /,<>;
@y=split/ /,<>;
$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