結果
問題 | No.2176 LRM Question 1 |
ユーザー | InTheBloom |
提出日時 | 2023-07-21 21:05:26 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 759 bytes |
コンパイル時間 | 5,146 ms |
コンパイル使用メモリ | 173,088 KB |
実行使用メモリ | 11,892 KB |
最終ジャッジ日時 | 2024-09-21 22:23:06 |
合計ジャッジ時間 | 6,232 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 44 ms
11,892 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 21 ms
11,796 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 21 ms
10,624 KB |
testcase_09 | AC | 20 ms
11,428 KB |
testcase_10 | AC | 36 ms
11,200 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 43 ms
10,620 KB |
testcase_15 | AC | 35 ms
9,360 KB |
testcase_16 | AC | 28 ms
7,676 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 19 ms
6,944 KB |
testcase_22 | AC | 3 ms
6,944 KB |
testcase_23 | AC | 16 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,940 KB |
ソースコード
import std; void main () { long L, R; int M; readln.read(L, R, M); solve(L, R, M); } void solve (long L, long R, int M) { if (M < L) { writeln(0); return; } long[] factorial = new long[](M+1); factorial[0] = 1 % M; foreach (i; 1..M+1) { factorial[i] = i*factorial[i-1] % M; } long ans = 0; long product = 1; foreach (i; 1..L) { product *= factorial[i]; product %= M; } for (long i = L; i <= min(M, R); i++) { product *= factorial[i]; product %= M; ans += product; ans %= M; } writeln(ans); } void read(T...)(string S, ref T args) { auto buf = S.split; foreach (i, ref arg; args) { arg = buf[i].to!(typeof(arg)); } }