結果

問題 No.864 四方演算
ユーザー shinichishinichi
提出日時 2021-09-22 17:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 1,404 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 61,716 KB
最終ジャッジ日時 2024-07-05 08:35:00
合計ジャッジ時間 2,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,304 KB
testcase_01 AC 51 ms
59,136 KB
testcase_02 AC 46 ms
59,320 KB
testcase_03 AC 48 ms
59,132 KB
testcase_04 AC 50 ms
61,204 KB
testcase_05 AC 46 ms
58,880 KB
testcase_06 AC 49 ms
60,956 KB
testcase_07 AC 48 ms
59,616 KB
testcase_08 AC 46 ms
59,880 KB
testcase_09 AC 41 ms
60,784 KB
testcase_10 AC 41 ms
60,520 KB
testcase_11 AC 39 ms
59,292 KB
testcase_12 AC 46 ms
60,376 KB
testcase_13 AC 43 ms
59,344 KB
testcase_14 AC 41 ms
60,204 KB
testcase_15 AC 49 ms
59,860 KB
testcase_16 AC 47 ms
60,680 KB
testcase_17 AC 49 ms
59,340 KB
testcase_18 AC 50 ms
61,716 KB
testcase_19 AC 45 ms
60,912 KB
testcase_20 AC 50 ms
59,284 KB
testcase_21 AC 48 ms
61,000 KB
testcase_22 AC 48 ms
60,596 KB
testcase_23 AC 41 ms
59,212 KB
testcase_24 AC 46 ms
59,272 KB
testcase_25 AC 42 ms
59,148 KB
testcase_26 AC 47 ms
60,084 KB
testcase_27 AC 36 ms
54,596 KB
testcase_28 AC 35 ms
54,608 KB
testcase_29 AC 35 ms
54,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def make_divisors(n):
    lower, upper = [], []
    i = 1
    while i * i <= n:
        if n % i == 0:
            lower.append(i)
            if i != n // i:
                upper.append(n // i)
        i += 1
    return lower + upper[::-1]

def prime_factorize(n):
    primes = []
    while not n % 2:
        primes.append(2)
        n //= 2
    while not n % 3:
        primes.append(3)
        n //= 3
    for p in range(5, int(n**0.5)+1, 6):
        while not n % p:
            primes.append(p)
            n //= p
        while not n % (p+2):
            primes.append(p+2)
            n //= (p+2)
    if n != 1:
        primes.append(n)
    return primes

# n以下の数でnと互いに素である数の個数
def euler_fanction(n):
    cnt = n
    for p in set(prime_factorize(n)):
        cnt *= p-1
        cnt //= p
    return cnt

# {prime1: cnt1, prime2: cnt2, ..}という辞書型で返す
def prime_factorize_count(n):
    primes = prime_factorize(n)
    return Counter(primes)


if __name__ == '__main__':
    N = int(input())
    K = int(input())
    divisors = make_divisors(K)
    ans = 0
    for a in divisors:
        b = K // a
        aa, bb = a-1, b-1
        if 2 * N < a or 2 * N < b:
            continue
        if a > N:
            aa -= (a-N-1) * 2
        if b > N:
            bb -= (b-N-1) * 2
        ans += aa * bb
    print(ans)
0