結果

問題 No.502 階乗を計算するだけ
ユーザー ayaoniayaoni
提出日時 2021-07-03 11:27:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,822 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 59,952 KB
最終ジャッジ日時 2024-06-30 03:31:51
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
52,480 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 37 ms
52,224 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 36 ms
52,864 KB
testcase_17 AC 35 ms
52,480 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 35 ms
52,480 KB
testcase_21 AC 37 ms
52,480 KB
testcase_22 AC 47 ms
58,112 KB
testcase_23 AC 41 ms
57,984 KB
testcase_24 AC 43 ms
57,984 KB
testcase_25 AC 41 ms
58,112 KB
testcase_26 AC 43 ms
58,240 KB
testcase_27 AC 41 ms
57,984 KB
testcase_28 AC 41 ms
57,984 KB
testcase_29 AC 39 ms
57,984 KB
testcase_30 AC 47 ms
58,368 KB
testcase_31 AC 41 ms
57,984 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 35 ms
52,224 KB
testcase_43 AC 35 ms
52,680 KB
testcase_44 AC 36 ms
52,480 KB
testcase_45 AC 37 ms
52,096 KB
testcase_46 AC 37 ms
52,480 KB
testcase_47 AC 36 ms
52,352 KB
testcase_48 AC 36 ms
52,608 KB
testcase_49 AC 36 ms
52,224 KB
testcase_50 AC 36 ms
52,480 KB
testcase_51 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


n = I()
mod = 10**9+7

if n >= mod:
    print(0)
    exit()

'''
X = [1]
for i in range(1,10**9+7):
    x = (X[-1]*i) % mod
    if i % 10**7 == 0:
        X.append(x)
'''

X = [1, 10000000, 998600007, 294000, 999917687, 28812, 719987904, 927205936, 360764682, 152718253, 193097225, 601315142, 534895288, 953245298, 785819620, 174889406, 764123872, 330692601, 763327331, 874774663, 375315483, 878286250, 647439189, 427622916, 121593507, 537211368, 702275322, 612699655, 199108686, 535809374, 74800323, 967683307, 72389408, 472780472, 354782487, 580782917, 656427064, 979853923, 133588584, 395303171, 293151131, 868656266, 166150597, 209886708, 873548950, 748320832, 310406940, 778761180, 783362459, 223066786, 219266256, 777219477, 210921125, 467482635, 132915653, 638274744, 137963022, 989527553, 722518168, 135999988, 228800056, 183023769, 985676855, 303165102, 921820359, 155717397, 300585633, 700253396, 946793865, 276985666, 842770252, 731431882, 353583343, 583189134, 139080308, 269828390, 964512982, 941275070, 460638157, 482671013, 697042351, 357769900, 946400795, 351411422, 413700856, 138479925, 666350862, 881923285, 367352605, 161393288, 183222294, 372873998, 758691475, 810918538, 384156060, 445362222, 127165890, 436543616, 685310820, 50796051, 644427650]

ans = X[n//10**7]
for i in range((10**7)*(n//10**7)+1,n+1):
    ans *= i
    ans %= mod

print(ans)
0