結果

問題 No.864 四方演算
ユーザー O2MTO2MT
提出日時 2021-02-16 01:49:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 665 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 62,916 KB
最終ジャッジ日時 2024-07-23 17:20:51
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 60 ms
58,500 KB
testcase_02 AC 51 ms
57,820 KB
testcase_03 AC 52 ms
58,272 KB
testcase_04 AC 58 ms
60,568 KB
testcase_05 AC 49 ms
57,664 KB
testcase_06 AC 53 ms
58,140 KB
testcase_07 AC 53 ms
58,976 KB
testcase_08 AC 50 ms
58,360 KB
testcase_09 AC 47 ms
57,864 KB
testcase_10 AC 48 ms
59,760 KB
testcase_11 AC 43 ms
57,320 KB
testcase_12 AC 51 ms
58,128 KB
testcase_13 AC 48 ms
58,656 KB
testcase_14 AC 43 ms
59,252 KB
testcase_15 AC 56 ms
57,816 KB
testcase_16 AC 52 ms
58,588 KB
testcase_17 AC 60 ms
61,316 KB
testcase_18 AC 67 ms
62,564 KB
testcase_19 AC 54 ms
61,984 KB
testcase_20 AC 62 ms
62,100 KB
testcase_21 AC 59 ms
61,420 KB
testcase_22 AC 56 ms
60,264 KB
testcase_23 AC 46 ms
60,564 KB
testcase_24 AC 54 ms
61,160 KB
testcase_25 AC 51 ms
61,452 KB
testcase_26 AC 59 ms
62,916 KB
testcase_27 AC 38 ms
52,724 KB
testcase_28 AC 37 ms
53,692 KB
testcase_29 AC 38 ms
52,404 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)
print(count)
0