結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー tailstails
提出日時 2019-09-02 19:03:55
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 569 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-06-24 06:38:12
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 149 ms
18,816 KB
testcase_03 AC 62 ms
17,152 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 20 ms
9,856 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 18 ms
7,168 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 6 ms
6,944 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 29 ms
8,576 KB
testcase_35 AC 122 ms
19,456 KB
testcase_36 AC 66 ms
14,208 KB
testcase_37 AC 119 ms
19,340 KB
testcase_38 AC 116 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::y" used only once: possible typo at Main.pl line 25.
Main.pl syntax OK

ソースコード

diff #

# almost beta-ishoku of
# https://yukicoder.me/submissions/374293 by nadare

$N=<>;
@DP = (999)x($N+1);
$DP[0] = 0;

$r=int sqrt$N;
for$i(0..$N-$r*$r){
	for$j(1..sqrt$N-$i){
		$f=$j*$j;
		$DP[$i+$f]=$DP[$i]+$j if $DP[$i+$f]>$DP[$i]+$j;
	}
}
for(0,1){
	$DP[$N]=$DP[$N-$r*$r]+$r if $DP[$N]>$DP[$N-$r*$r]+$r;
	--$r;
}

$x = $N;
$j=1;
while($x){
	$f=$j*$j;
	if($DP[$x] == $DP[$x-$f] + $j){
		$y=$j;
		if($j%2){
			print"01"x($j/2),0;
		}else{
			push@E,$j;
		}
		$x -= $f;
	}else{
		++$j;
	}
}

while($e=pop@E){
	print"01"x($e/2);
	if($e=shift@E){
		print"10"x($e/2);
	}
}
0