結果

問題 No.864 四方演算
ユーザー kumatan400kumatan400
提出日時 2023-02-22 11:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 470 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 62,076 KB
最終ジャッジ日時 2024-07-22 13:59:49
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,128 KB
testcase_01 AC 49 ms
59,180 KB
testcase_02 AC 44 ms
57,988 KB
testcase_03 AC 48 ms
57,732 KB
testcase_04 AC 50 ms
58,480 KB
testcase_05 AC 45 ms
58,120 KB
testcase_06 AC 46 ms
57,604 KB
testcase_07 AC 46 ms
58,924 KB
testcase_08 AC 44 ms
58,116 KB
testcase_09 AC 42 ms
59,400 KB
testcase_10 AC 41 ms
59,052 KB
testcase_11 AC 38 ms
57,728 KB
testcase_12 AC 43 ms
58,652 KB
testcase_13 AC 45 ms
58,068 KB
testcase_14 AC 44 ms
57,936 KB
testcase_15 AC 50 ms
57,732 KB
testcase_16 AC 47 ms
58,116 KB
testcase_17 AC 47 ms
59,288 KB
testcase_18 AC 50 ms
62,076 KB
testcase_19 AC 44 ms
58,308 KB
testcase_20 AC 47 ms
59,024 KB
testcase_21 AC 46 ms
58,864 KB
testcase_22 AC 46 ms
59,816 KB
testcase_23 AC 42 ms
58,928 KB
testcase_24 AC 46 ms
58,536 KB
testcase_25 AC 43 ms
59,720 KB
testcase_26 AC 46 ms
58,848 KB
testcase_27 AC 34 ms
52,800 KB
testcase_28 AC 34 ms
53,460 KB
testcase_29 AC 34 ms
52,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []
    i = 1
    while i * i <= n:
        if n % i == 0:
            divisors.append(i)
            j = n // i
            if i != j:
                divisors.append(j)
        i += 1
    return divisors

N = int(input())
K = int(input())

def f(N, i):
    t = min(N, i-1)
    s = max(1, i-t)
    res = max(0, t-s+1)
    return res
    
ans = 0
for i in make_divisors(K):
    j = K // i
    
    ans += f(N, i) * f(N, j)

print(ans)
0