結果

問題 No.4 おもりと天秤
ユーザー togaerrortogaerror
提出日時 2015-04-21 17:56:51
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 814 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-04 19:07:51
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,656 KB
testcase_01 AC 5 ms
5,632 KB
testcase_02 AC 34 ms
6,400 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 196 ms
6,784 KB
testcase_06 WA -
testcase_07 AC 198 ms
6,528 KB
testcase_08 AC 6 ms
5,888 KB
testcase_09 AC 193 ms
6,528 KB
testcase_10 AC 190 ms
6,656 KB
testcase_11 AC 21 ms
6,528 KB
testcase_12 AC 14 ms
6,656 KB
testcase_13 AC 13 ms
6,528 KB
testcase_14 AC 16 ms
6,528 KB
testcase_15 AC 13 ms
6,528 KB
testcase_16 WA -
testcase_17 AC 21 ms
6,528 KB
testcase_18 WA -
testcase_19 AC 195 ms
6,656 KB
testcase_20 AC 193 ms
6,528 KB
testcase_21 AC 195 ms
6,528 KB
testcase_22 AC 200 ms
6,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my $n = <>;
my $str = <>;
chomp $str;
my @array = split / /, $str;
my $ans = 0;

@array = sort {$a <=> $b} @array;
for(my $i = 0; $i < $n; $i++) {
	$ans += $array[$i];
}
$ans /= 2;
if($ans != int $ans) {
	print "impossible\n";
	exit;
}
my @f;
my @s;

for(my $i = 0; $i < 100**2; $i++) {
	$f[$i] = 0;
	$s[$i] = 0;
}
for(my $i = 0; $i < $n; $i++) {
	$f[$array[$i]] = 1;
}

for(my $i = 0; $i < $n; $i++) {
	for(my $j = 0; $j < 100**2; $j++) {
		if(($array[$i] + $j < 100**2)and($f[$j] == 1)) {
				$s[$j + $i] = 1;
		}
	}
	for(my $k = 0; $k < 100**2; $k++) {
		if(($f[$k] == 1)or($s[$k] == 1)) {
			$f[$k] = 1;
		}
	}
}
#for(my $i = 0; $i < 10; $i++) {
#	print "$s[$i]" ;
#}
#print "\n";
if($s[$ans] == 1) {
	print "possible\n";
} else {
	print "impossible\n";
}

exit;
0