結果

問題 No.2176 LRM Question 1
ユーザー first_vilfirst_vil
提出日時 2023-01-24 09:28:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 1,486 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,060 KB
最終ジャッジ日時 2024-06-25 23:48:33
合計ジャッジ時間 2,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 66 ms
81,664 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 62 ms
73,600 KB
testcase_05 AC 44 ms
59,520 KB
testcase_06 AC 41 ms
59,008 KB
testcase_07 AC 45 ms
59,392 KB
testcase_08 AC 62 ms
73,856 KB
testcase_09 AC 65 ms
74,240 KB
testcase_10 AC 66 ms
78,336 KB
testcase_11 AC 41 ms
51,840 KB
testcase_12 AC 40 ms
52,028 KB
testcase_13 AC 64 ms
74,112 KB
testcase_14 AC 71 ms
82,060 KB
testcase_15 AC 67 ms
77,568 KB
testcase_16 AC 59 ms
73,600 KB
testcase_17 AC 42 ms
59,136 KB
testcase_18 AC 62 ms
72,320 KB
testcase_19 AC 56 ms
67,712 KB
testcase_20 AC 46 ms
61,440 KB
testcase_21 AC 53 ms
68,224 KB
testcase_22 AC 43 ms
59,264 KB
testcase_23 AC 52 ms
66,944 KB
testcase_24 AC 50 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,m=map(int,input().split())
r+=1
l=min(l,m)
r=min(r,m)
a=[1]*(m+1)
for i in range(1,m+1):
    a[i]=a[i-1]*i%m
b=a[:]
for i in range(1,m+1):
    b[i]=b[i-1]*a[i]%m
print(sum(b[l:r])%m)
0