結果

問題 No.420 mod2漸化式
ユーザー ヒッキープログラミングスレヒッキープログラミングスレ
提出日時 2016-09-09 23:20:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 480 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-16 18:36:12
合計ジャッジ時間 43,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
15,744 KB
testcase_01 TLE -
testcase_02 AC 30 ms
16,000 KB
testcase_03 AC 29 ms
21,376 KB
testcase_04 AC 36 ms
15,872 KB
testcase_05 AC 85 ms
21,120 KB
testcase_06 AC 29 ms
15,872 KB
testcase_07 TLE -
testcase_08 TLE -
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 TLE -
testcase_27 AC 345 ms
10,624 KB
testcase_28 AC 86 ms
10,496 KB
testcase_29 AC 37 ms
10,496 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,496 KB
testcase_32 AC 28 ms
10,752 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

x = int(input())

ans_count = 0
ans_sum = 0
if x < 31 - x:
    for v in itertools.combinations(range(31), x):
        s = ['0'] * 31
        ans_count += 1
        for i in v:
            s[i] = '1'
        ans_sum += int(''.join(s), base=2)
else:
    for v in itertools.combinations(range(31), 31 - x):
        s = ['1'] * 31
        ans_count += 1
        for i in v:
            s[i] = '0'
        ans_sum += int(''.join(s), base=2)

print(ans_count, ans_sum)
0