結果

問題 No.752 mod数列
ユーザー kotatsugamekotatsugame
提出日時 2018-11-16 23:13:01
言語 Perl
(5.38.2)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-06-06 20:27:03
合計ジャッジ時間 9,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,680 KB
testcase_01 AC 8 ms
7,936 KB
testcase_02 AC 7 ms
7,040 KB
testcase_03 AC 7 ms
6,272 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 9 ms
7,936 KB
testcase_06 AC 7 ms
7,040 KB
testcase_07 AC 9 ms
7,936 KB
testcase_08 AC 9 ms
8,064 KB
testcase_09 AC 9 ms
7,552 KB
testcase_10 AC 157 ms
66,944 KB
testcase_11 AC 69 ms
32,896 KB
testcase_12 AC 123 ms
55,936 KB
testcase_13 AC 96 ms
44,288 KB
testcase_14 AC 159 ms
67,968 KB
testcase_15 AC 153 ms
20,480 KB
testcase_16 AC 315 ms
41,600 KB
testcase_17 AC 551 ms
104,064 KB
testcase_18 AC 289 ms
26,880 KB
testcase_19 AC 337 ms
32,768 KB
testcase_20 AC 482 ms
50,816 KB
testcase_21 AC 496 ms
50,176 KB
testcase_22 AC 473 ms
48,128 KB
testcase_23 AC 505 ms
52,480 KB
testcase_24 AC 504 ms
48,896 KB
testcase_25 AC 328 ms
93,104 KB
testcase_26 AC 502 ms
103,424 KB
testcase_27 AC 377 ms
84,352 KB
testcase_28 AC 438 ms
66,944 KB
testcase_29 AC 425 ms
72,704 KB
testcase_30 AC 587 ms
95,232 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,504 KB
testcase_33 AC 113 ms
53,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$M{0}=0;
sub F{
	my($n,$m)=@_;
	$M{$n}//=F($m=$%/($%/$n+1|0)|0)+($%%$n+$%%($m+1))*($n-$m)/2|0
}
$%=<>;
print-F($`-/ /)+F($'),$/for<>
0