結果

問題 No.420 mod2漸化式
ユーザー yansi819yansi819
提出日時 2024-05-19 11:19:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 93 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 66,276 KB
最終ジャッジ日時 2024-05-19 11:19:40
合計ジャッジ時間 3,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 31 ms
52,188 KB
testcase_02 AC 32 ms
52,424 KB
testcase_03 AC 32 ms
53,548 KB
testcase_04 AC 32 ms
52,528 KB
testcase_05 AC 32 ms
52,696 KB
testcase_06 RE -
testcase_07 AC 34 ms
52,736 KB
testcase_08 AC 32 ms
53,468 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 32 ms
52,400 KB
testcase_11 AC 33 ms
53,028 KB
testcase_12 AC 33 ms
53,420 KB
testcase_13 AC 33 ms
53,500 KB
testcase_14 AC 33 ms
52,224 KB
testcase_15 AC 33 ms
52,584 KB
testcase_16 AC 33 ms
51,940 KB
testcase_17 AC 32 ms
52,572 KB
testcase_18 AC 32 ms
52,084 KB
testcase_19 AC 32 ms
52,956 KB
testcase_20 AC 32 ms
53,296 KB
testcase_21 AC 32 ms
52,532 KB
testcase_22 AC 31 ms
53,008 KB
testcase_23 AC 32 ms
52,064 KB
testcase_24 AC 34 ms
52,256 KB
testcase_25 AC 32 ms
52,212 KB
testcase_26 AC 35 ms
52,336 KB
testcase_27 AC 34 ms
52,372 KB
testcase_28 AC 33 ms
52,592 KB
testcase_29 AC 34 ms
52,072 KB
testcase_30 AC 33 ms
52,332 KB
testcase_31 AC 33 ms
52,128 KB
testcase_32 AC 34 ms
51,948 KB
testcase_33 AC 34 ms
52,616 KB
testcase_34 AC 34 ms
52,532 KB
testcase_35 AC 39 ms
52,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb
x = int(input())
print(comb(31, x), (pow(2, 31) - 1) * comb(30, x - 1))
0