結果

問題 No.864 四方演算
ユーザー jensenjensen
提出日時 2021-01-15 17:53:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 555 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-26 09:03:55
合計ジャッジ時間 5,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 205 ms
10,624 KB
testcase_02 AC 145 ms
10,752 KB
testcase_03 AC 163 ms
10,624 KB
testcase_04 AC 180 ms
10,496 KB
testcase_05 AC 135 ms
10,752 KB
testcase_06 AC 180 ms
10,496 KB
testcase_07 AC 165 ms
10,624 KB
testcase_08 AC 145 ms
10,496 KB
testcase_09 AC 98 ms
10,624 KB
testcase_10 AC 91 ms
10,496 KB
testcase_11 AC 59 ms
10,752 KB
testcase_12 AC 151 ms
10,752 KB
testcase_13 AC 115 ms
10,624 KB
testcase_14 AC 63 ms
10,496 KB
testcase_15 AC 202 ms
10,624 KB
testcase_16 AC 159 ms
10,752 KB
testcase_17 AC 176 ms
10,752 KB
testcase_18 AC 159 ms
10,496 KB
testcase_19 AC 130 ms
10,752 KB
testcase_20 AC 184 ms
10,496 KB
testcase_21 AC 160 ms
10,752 KB
testcase_22 AC 144 ms
10,624 KB
testcase_23 AC 44 ms
10,624 KB
testcase_24 AC 132 ms
10,624 KB
testcase_25 AC 82 ms
10,496 KB
testcase_26 AC 144 ms
10,624 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 29 ms
10,496 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]

n=int(input())
k=int(input())

yakusu=make_divisors(k)
comb=[0]*len(yakusu)
s=0
for k in range(1,len(yakusu)):
    if(yakusu[k]<=2*n):
        comb[k]=yakusu[k]-1-2*max(0,yakusu[k]-n-1)
for i in range(len(yakusu)):
    s+=comb[i]*comb[len(yakusu)-1-i]

print(s)
0