結果

問題 No.864 四方演算
ユーザー O2MTO2MT
提出日時 2021-02-16 01:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 683 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 62,512 KB
最終ジャッジ日時 2024-07-23 17:21:38
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,544 KB
testcase_01 AC 54 ms
58,844 KB
testcase_02 AC 48 ms
57,872 KB
testcase_03 AC 49 ms
59,716 KB
testcase_04 AC 52 ms
58,784 KB
testcase_05 AC 47 ms
58,556 KB
testcase_06 AC 54 ms
58,072 KB
testcase_07 AC 49 ms
58,380 KB
testcase_08 AC 48 ms
57,532 KB
testcase_09 AC 45 ms
58,120 KB
testcase_10 AC 44 ms
59,996 KB
testcase_11 AC 40 ms
58,808 KB
testcase_12 AC 48 ms
57,392 KB
testcase_13 AC 45 ms
57,256 KB
testcase_14 AC 41 ms
58,176 KB
testcase_15 AC 54 ms
58,712 KB
testcase_16 AC 49 ms
58,796 KB
testcase_17 AC 54 ms
59,472 KB
testcase_18 AC 60 ms
62,512 KB
testcase_19 AC 51 ms
60,140 KB
testcase_20 AC 57 ms
60,292 KB
testcase_21 AC 55 ms
60,720 KB
testcase_22 AC 52 ms
59,852 KB
testcase_23 AC 43 ms
60,732 KB
testcase_24 AC 49 ms
58,920 KB
testcase_25 AC 46 ms
59,168 KB
testcase_26 AC 54 ms
60,124 KB
testcase_27 AC 37 ms
52,288 KB
testcase_28 AC 37 ms
52,396 KB
testcase_29 AC 35 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def check_pattern(n,p):
    if 2 <= p <= n+1:
        num = p-1
    elif n+2 <= p <= 2*n:
        num = 2*n+1-p
    else:
        num = 0
    return num

N,K = int(input()),int(input())
l = list(filter(lambda x: x <= 2*N, make_divisors(K)))
count = 0
for i in l:
    for j in l:
        if i*j == K:
            count += check_pattern(N,i)*check_pattern(N,j)
            break
print(count)
0