結果
| 問題 | No.420 mod2漸化式 |
| コンテスト | |
| ユーザー |
htkb
|
| 提出日時 | 2018-05-26 15:25:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 1,000 ms |
| コード長 | 296 bytes |
| 記録 | |
| コンパイル時間 | 482 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-03-17 18:17:50 |
| 合計ジャッジ時間 | 4,774 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
ソースコード
from math import factorial
x = 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 = 0
for i in range(31):
total += 2**i * n
print(factorial(31) // factorial(x) // factorial(31-x), total)
htkb