結果

問題 No.502 階乗を計算するだけ
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2017-04-07 23:52:45
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 547 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 815,420 KB
最終ジャッジ日時 2024-07-16 03:24:09
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 11 ms
6,944 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 10 ms
6,944 KB
testcase_19 AC 10 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 103 ms
36,208 KB
testcase_23 AC 37 ms
14,336 KB
testcase_24 AC 71 ms
26,120 KB
testcase_25 AC 17 ms
8,576 KB
testcase_26 AC 42 ms
17,244 KB
testcase_27 AC 31 ms
13,056 KB
testcase_28 AC 37 ms
15,488 KB
testcase_29 AC 22 ms
10,240 KB
testcase_30 AC 95 ms
34,100 KB
testcase_31 AC 49 ms
19,584 KB
testcase_32 MLE -
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 #


def modinv(a, m):
    return pow(a, m - 2, m);

def factorialMod(n, modulus):
    ans=1
    if n <= 1000000:
        #calculate the factorial normally (right argument of range() is exclusive)
        for i in range(1,n+1):
            ans = (ans * i) % modulus   
    else:
        #Fancypants method for large n
        for i in range(n+1,modulus):
            ans = (ans * i) % modulus
        ans = modinv(ans, modulus)
        ans = -1*ans + modulus
    return ans % modulus

mod = 1000000007;
k = raw_input()
print factorialMod(int(k), mod)
0