結果

問題 No.502 階乗を計算するだけ
ユーザー TatsunoTatsuno
提出日時 2017-04-08 00:19:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 167 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 66,024 KB
最終ジャッジ日時 2024-07-16 03:32:34
合計ジャッジ時間 5,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,692 KB
testcase_01 AC 35 ms
52,820 KB
testcase_02 AC 36 ms
52,244 KB
testcase_03 AC 35 ms
52,260 KB
testcase_04 AC 36 ms
52,640 KB
testcase_05 AC 36 ms
52,272 KB
testcase_06 AC 37 ms
52,544 KB
testcase_07 AC 36 ms
52,272 KB
testcase_08 AC 36 ms
52,188 KB
testcase_09 AC 37 ms
52,600 KB
testcase_10 AC 35 ms
53,308 KB
testcase_11 AC 34 ms
52,760 KB
testcase_12 AC 35 ms
52,428 KB
testcase_13 AC 34 ms
51,908 KB
testcase_14 AC 35 ms
51,996 KB
testcase_15 AC 37 ms
52,316 KB
testcase_16 AC 35 ms
51,900 KB
testcase_17 AC 35 ms
52,436 KB
testcase_18 AC 37 ms
53,076 KB
testcase_19 AC 35 ms
52,352 KB
testcase_20 AC 34 ms
52,724 KB
testcase_21 AC 35 ms
52,024 KB
testcase_22 AC 45 ms
59,004 KB
testcase_23 AC 39 ms
58,740 KB
testcase_24 AC 41 ms
58,044 KB
testcase_25 AC 39 ms
58,184 KB
testcase_26 AC 40 ms
57,328 KB
testcase_27 AC 39 ms
58,608 KB
testcase_28 AC 41 ms
58,540 KB
testcase_29 AC 40 ms
58,240 KB
testcase_30 AC 44 ms
58,220 KB
testcase_31 AC 42 ms
58,004 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m = 10**9+7

res=1
while n > 1:
    res=(res*(m-1 if (n//m)%2==1 else 1))%m
    for i in range(2, n%m+1):
        res= (res*i)%m
    n //=m
print(res%m)
0