結果

問題 No.752 mod数列
ユーザー kimiyukikimiyuki
提出日時 2018-11-16 23:20:48
言語 Perl
(5.38.2)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-06-06 20:31:24
合計ジャッジ時間 9,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,808 KB
testcase_01 AC 7 ms
7,680 KB
testcase_02 AC 6 ms
7,040 KB
testcase_03 AC 5 ms
6,400 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 6 ms
7,808 KB
testcase_06 AC 6 ms
6,912 KB
testcase_07 AC 7 ms
7,808 KB
testcase_08 AC 8 ms
8,064 KB
testcase_09 AC 6 ms
7,552 KB
testcase_10 AC 131 ms
65,280 KB
testcase_11 AC 59 ms
32,128 KB
testcase_12 AC 107 ms
54,400 KB
testcase_13 AC 83 ms
43,264 KB
testcase_14 AC 138 ms
66,304 KB
testcase_15 AC 139 ms
20,352 KB
testcase_16 AC 278 ms
40,832 KB
testcase_17 AC 511 ms
101,888 KB
testcase_18 AC 265 ms
26,880 KB
testcase_19 AC 324 ms
32,640 KB
testcase_20 AC 444 ms
50,688 KB
testcase_21 AC 433 ms
49,792 KB
testcase_22 AC 432 ms
48,128 KB
testcase_23 AC 460 ms
52,224 KB
testcase_24 AC 442 ms
48,640 KB
testcase_25 AC 306 ms
90,752 KB
testcase_26 AC 469 ms
101,248 KB
testcase_27 AC 349 ms
82,432 KB
testcase_28 AC 386 ms
65,920 KB
testcase_29 AC 417 ms
71,552 KB
testcase_30 AC 543 ms
93,824 KB
testcase_31 AC 3 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 100 ms
52,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::M" used only once: possible typo at Main.pl line 3.
Main.pl syntax OK

ソースコード

diff #

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