結果

問題 No.752 mod数列
ユーザー kotatsugamekotatsugame
提出日時 2018-11-16 23:15:41
言語 Perl
(5.38.2)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-06-06 20:30:54
合計ジャッジ時間 9,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,680 KB
testcase_01 AC 8 ms
7,808 KB
testcase_02 AC 7 ms
7,168 KB
testcase_03 AC 5 ms
6,272 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 8 ms
7,808 KB
testcase_06 AC 6 ms
7,040 KB
testcase_07 AC 8 ms
7,808 KB
testcase_08 AC 8 ms
7,936 KB
testcase_09 AC 8 ms
7,552 KB
testcase_10 AC 146 ms
65,280 KB
testcase_11 AC 67 ms
32,256 KB
testcase_12 AC 113 ms
54,400 KB
testcase_13 AC 95 ms
43,264 KB
testcase_14 AC 154 ms
66,176 KB
testcase_15 AC 145 ms
20,352 KB
testcase_16 AC 293 ms
40,832 KB
testcase_17 AC 524 ms
101,888 KB
testcase_18 AC 277 ms
26,880 KB
testcase_19 AC 332 ms
32,640 KB
testcase_20 AC 465 ms
50,688 KB
testcase_21 AC 466 ms
49,920 KB
testcase_22 AC 457 ms
48,128 KB
testcase_23 AC 478 ms
52,096 KB
testcase_24 AC 472 ms
48,768 KB
testcase_25 AC 304 ms
90,880 KB
testcase_26 AC 478 ms
101,120 KB
testcase_27 AC 363 ms
82,432 KB
testcase_28 AC 416 ms
65,792 KB
testcase_29 AC 440 ms
71,424 KB
testcase_30 AC 623 ms
93,824 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 103 ms
52,352 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
}
$%=<>;
print-F($`-/ /)+F($'),$/for<>
0