結果

問題 No.473 和と積の和
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-23 02:10:41
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 76,944 KB
実行使用メモリ 217,772 KB
最終ジャッジ日時 2024-05-09 13:22:35
合計ジャッジ時間 10,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
82,868 KB
testcase_01 AC 72 ms
75,548 KB
testcase_02 AC 72 ms
76,048 KB
testcase_03 TLE -
testcase_04 AC 72 ms
75,812 KB
testcase_05 AC 72 ms
75,676 KB
testcase_06 AC 73 ms
76,156 KB
testcase_07 AC 71 ms
75,560 KB
testcase_08 AC 72 ms
75,688 KB
testcase_09 AC 71 ms
75,812 KB
testcase_10 AC 71 ms
76,096 KB
testcase_11 AC 70 ms
75,920 KB
testcase_12 AC 72 ms
75,884 KB
testcase_13 AC 73 ms
75,680 KB
testcase_14 AC 71 ms
76,052 KB
testcase_15 AC 73 ms
76,312 KB
testcase_16 AC 73 ms
75,936 KB
testcase_17 AC 73 ms
76,448 KB
testcase_18 AC 71 ms
75,808 KB
testcase_19 AC 71 ms
75,920 KB
testcase_20 AC 73 ms
75,936 KB
testcase_21 AC 73 ms
76,056 KB
testcase_22 AC 71 ms
75,936 KB
testcase_23 AC 130 ms
79,268 KB
testcase_24 AC 149 ms
79,748 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
def divisors(n):
    sq = int(n ** .5)
    res = [(i, n//i) for i in range(2, sq+1) if n%i==0]
    return res

N, x = map(int, raw_input().split())
sett = set()
seen = set()

def rec(n, arr):
    global sett
    key = tuple(sorted(arr))
    if n == N:
        sett.add(key)
        return
#    arr.sort()
    if key in seen:
        return
    seen.add(key)
    for i in xrange(n):
        x = arr[i]
        arr.pop(i)
        divs = divisors(x+1)
        for p, q in divs:
            arr.append(p-1)
            arr.append(q-1)
            rec(n+1, arr)
            arr.pop()
            arr.pop()
        arr.insert(i, x)

rec(1, [x])
print len(sett)
0