結果

問題 No.2067 ±2^k operations
ユーザー tailstails
提出日時 2022-09-13 10:12:14
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,076 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-05-07 18:30:08
合計ジャッジ時間 12,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 97 ms
15,232 KB
testcase_02 AC 96 ms
14,976 KB
testcase_03 AC 103 ms
15,232 KB
testcase_04 AC 102 ms
15,104 KB
testcase_05 AC 100 ms
15,232 KB
testcase_06 AC 29 ms
8,192 KB
testcase_07 AC 1,021 ms
95,360 KB
testcase_08 AC 1,016 ms
94,976 KB
testcase_09 AC 1,034 ms
95,104 KB
testcase_10 AC 1,032 ms
94,976 KB
testcase_11 AC 1,024 ms
95,360 KB
testcase_12 AC 1,046 ms
94,976 KB
testcase_13 AC 1,029 ms
95,104 KB
testcase_14 AC 1,040 ms
95,360 KB
testcase_15 AC 1,041 ms
95,104 KB
testcase_16 AC 1,076 ms
95,104 KB
testcase_17 AC 39 ms
8,832 KB
testcase_18 AC 13 ms
6,784 KB
testcase_19 AC 11 ms
6,784 KB
testcase_20 AC 11 ms
6,912 KB
testcase_21 AC 14 ms
6,784 KB
testcase_22 AC 14 ms
6,656 KB
testcase_23 AC 15 ms
6,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$m{0}=0;
sub f{
	my($n)=@_;
	$m{$n}//=f($n>>1)+f($n-1>>2)+f($n+1>>2)+($n+3>>1);
}
<>;
print f($_)-$_,$/for<>;
0