結果
問題 | No.420 mod2漸化式 |
ユーザー |
![]() |
提出日時 | 2018-05-26 15:25:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 296 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-28 18:10:30 |
合計ジャッジ時間 | 2,303 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 35 |
ソースコード
from math import factorialx = int(input())if x == 0:print(1, 0)exit()elif x >= 32:print(0, 0)exit()n = factorial(30) // factorial(x-1) // factorial(30-x+1)total = 0for i in range(31):total += 2**i * nprint(factorial(31) // factorial(x) // factorial(31-x), total)