結果
問題 | No.502 階乗を計算するだけ |
ユーザー | vwxyz |
提出日時 | 2022-05-01 23:19:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 97,232 KB |
最終ジャッジ日時 | 2024-07-01 00:47:38 |
合計ジャッジ時間 | 8,166 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
96,780 KB |
testcase_01 | AC | 141 ms
89,712 KB |
testcase_02 | AC | 142 ms
89,696 KB |
testcase_03 | AC | 146 ms
89,756 KB |
testcase_04 | AC | 144 ms
89,696 KB |
testcase_05 | AC | 144 ms
89,408 KB |
testcase_06 | AC | 142 ms
89,404 KB |
testcase_07 | AC | 145 ms
89,688 KB |
testcase_08 | AC | 142 ms
89,644 KB |
testcase_09 | AC | 143 ms
89,456 KB |
testcase_10 | AC | 145 ms
89,612 KB |
testcase_11 | AC | 144 ms
89,764 KB |
testcase_12 | AC | 144 ms
89,768 KB |
testcase_13 | AC | 142 ms
89,628 KB |
testcase_14 | AC | 146 ms
89,544 KB |
testcase_15 | AC | 143 ms
89,768 KB |
testcase_16 | AC | 143 ms
89,416 KB |
testcase_17 | AC | 148 ms
89,756 KB |
testcase_18 | AC | 148 ms
89,700 KB |
testcase_19 | AC | 142 ms
89,832 KB |
testcase_20 | AC | 145 ms
89,468 KB |
testcase_21 | AC | 146 ms
89,972 KB |
testcase_22 | AC | 153 ms
89,792 KB |
testcase_23 | AC | 146 ms
90,104 KB |
testcase_24 | AC | 150 ms
90,216 KB |
testcase_25 | AC | 146 ms
89,948 KB |
testcase_26 | AC | 147 ms
89,984 KB |
testcase_27 | AC | 143 ms
90,136 KB |
testcase_28 | AC | 147 ms
90,132 KB |
testcase_29 | AC | 145 ms
90,196 KB |
testcase_30 | AC | 151 ms
89,928 KB |
testcase_31 | AC | 150 ms
90,132 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 | -- | - |
ソースコード
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 elif N<=5*10**8: ans=1 for n in range(1,N+1): ans*=n ans%=mod else: ans=1 for n in range(N+1,10**9+7): ans*=n ans%=mod ans*=-1 ans=pow(ans,mod-2,mod) print(ans)