結果

問題 No.688 E869120 and Constructing Array 2
ユーザー tailstails
提出日時 2018-05-18 22:38:28
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 156 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 13:27:19
合計ジャッジ時間 2,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,624 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$k=<>;
while(!($k&1)){
	$k>>=1;
	++$a;
}
while(1){
	$b=int sqrt$k*2;
	if($k==$b*($b+1)/2){
		print$a+$b+1,$/,"0 "x$a,"1 "x$b,1;
		exit;
	}
	$k<<=1;
	--$a;
}
0