結果

問題 No.473 和と積の和
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-23 02:10:41
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 77,044 KB
実行使用メモリ 399,940 KB
最終ジャッジ日時 2024-12-16 02:58:43
合計ジャッジ時間 44,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
81,280 KB
testcase_01 AC 81 ms
278,016 KB
testcase_02 AC 88 ms
80,768 KB
testcase_03 AC 2,847 ms
399,940 KB
testcase_04 AC 84 ms
81,280 KB
testcase_05 AC 79 ms
81,280 KB
testcase_06 AC 84 ms
80,768 KB
testcase_07 AC 78 ms
81,536 KB
testcase_08 AC 78 ms
81,024 KB
testcase_09 AC 80 ms
81,792 KB
testcase_10 AC 83 ms
81,024 KB
testcase_11 AC 80 ms
81,536 KB
testcase_12 AC 83 ms
76,288 KB
testcase_13 AC 78 ms
75,776 KB
testcase_14 AC 85 ms
76,160 KB
testcase_15 AC 86 ms
75,776 KB
testcase_16 AC 82 ms
76,544 KB
testcase_17 AC 84 ms
75,904 KB
testcase_18 AC 79 ms
75,904 KB
testcase_19 AC 78 ms
76,160 KB
testcase_20 AC 81 ms
76,288 KB
testcase_21 AC 81 ms
75,520 KB
testcase_22 AC 80 ms
75,904 KB
testcase_23 AC 144 ms
79,488 KB
testcase_24 AC 162 ms
79,652 KB
testcase_25 TLE -
testcase_26 AC 1,737 ms
146,688 KB
testcase_27 TLE -
testcase_28 AC 86 ms
76,672 KB
testcase_29 AC 165 ms
79,964 KB
testcase_30 AC 167 ms
79,728 KB
testcase_31 AC 154 ms
79,104 KB
testcase_32 AC 142 ms
79,232 KB
testcase_33 AC 97 ms
78,208 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 164 ms
80,000 KB
testcase_37 AC 107 ms
78,464 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 87 ms
76,544 KB
testcase_43 AC 157 ms
82,420 KB
testcase_44 AC 663 ms
108,496 KB
testcase_45 AC 88 ms
76,096 KB
testcase_46 AC 87 ms
270,032 KB
権限があれば一括ダウンロードができます

ソースコード

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