結果

問題 No.420 mod2漸化式
ユーザー etale.K3
提出日時 2021-06-15 09:17:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 174 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 03:13:47
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())

if x > 31:
    print(0, 0)
    exit()

cnt = 1

for i in range(x):
    cnt *= (31 - i)
    cnt //= i + 1

sum = cnt * x * (2**31 - 1) // 31

print(cnt, sum)
0