結果

問題 No.420 mod2漸化式
ユーザー teruneterune
提出日時 2016-09-10 02:48:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 376 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 846,720 KB
最終ジャッジ日時 2024-11-16 19:37:34
合計ジャッジ時間 33,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 TLE -
testcase_02 AC 270 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 36 ms
13,312 KB
testcase_06 WA -
testcase_07 AC 228 ms
85,504 KB
testcase_08 AC 778 ms
278,656 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 488 ms
189,568 KB
testcase_27 AC 138 ms
54,912 KB
testcase_28 AC 45 ms
18,816 KB
testcase_29 AC 31 ms
11,776 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 32 ms
10,624 KB
testcase_32 AC 27 ms
10,496 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x = int(input())
if x == 0:
    print('0 0')
else :
    import itertools
    import math
    x_list =  list(itertools.combinations(range(31),x))
    # ans_sum = sum(list(map(lambda x: sum(list(map(lambda y: 2**y , x))) , x_list)))
    a = math.factorial(30)//math.factorial(30-(x-1))//math.factorial(x-1)
    x_32 = 2147483647
    print('{0} {1}'.format(len(x_list), x_32*a))
0