結果

問題 No.502 階乗を計算するだけ
ユーザー vwxyzvwxyz
提出日時 2022-05-01 23:17:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 807 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 97,124 KB
最終ジャッジ日時 2024-07-01 00:44:52
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
96,832 KB
testcase_01 AC 143 ms
89,800 KB
testcase_02 AC 140 ms
89,576 KB
testcase_03 AC 140 ms
89,924 KB
testcase_04 AC 141 ms
89,960 KB
testcase_05 AC 140 ms
89,796 KB
testcase_06 AC 141 ms
89,768 KB
testcase_07 AC 140 ms
89,708 KB
testcase_08 AC 140 ms
89,800 KB
testcase_09 AC 141 ms
89,860 KB
testcase_10 AC 141 ms
89,808 KB
testcase_11 AC 139 ms
89,668 KB
testcase_12 AC 140 ms
89,656 KB
testcase_13 AC 141 ms
89,928 KB
testcase_14 AC 140 ms
89,844 KB
testcase_15 AC 143 ms
89,876 KB
testcase_16 AC 141 ms
89,992 KB
testcase_17 AC 141 ms
89,732 KB
testcase_18 AC 137 ms
89,900 KB
testcase_19 AC 147 ms
89,888 KB
testcase_20 AC 142 ms
89,780 KB
testcase_21 AC 138 ms
89,708 KB
testcase_22 AC 147 ms
90,392 KB
testcase_23 AC 144 ms
90,420 KB
testcase_24 AC 144 ms
90,240 KB
testcase_25 AC 144 ms
90,256 KB
testcase_26 AC 145 ms
90,384 KB
testcase_27 AC 141 ms
90,272 KB
testcase_28 AC 141 ms
90,260 KB
testcase_29 AC 140 ms
90,180 KB
testcase_30 AC 146 ms
90,456 KB
testcase_31 AC 148 ms
90,312 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 #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N=int(readline())
mod=10**9+7
if N>=10**9+7:
    ans=0
else:
    ans=1
    for n in range(1,N+1):
        ans*=n
        ans%=mod
print(ans)
0