結果

問題 No.420 mod2漸化式
ユーザー Nagisa
提出日時 2016-09-19 09:53:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 236 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-24 13:03:34
合計ジャッジ時間 2,427 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
x = int(input())

if x == 0:
    print(1,0)
    exit()
elif x >= 32:
    print(0,0)
    exit()

print(factorial(31)//(factorial(x)*factorial(31-x)),2147483647*(factorial(30)//(factorial(x-1)*factorial(31-x))))
0