結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 186 ms
10,880 KB
testcase_02 AC 131 ms
10,752 KB
testcase_03 AC 146 ms
10,752 KB
testcase_04 AC 161 ms
10,752 KB
testcase_05 AC 121 ms
10,752 KB
testcase_06 AC 162 ms
10,880 KB
testcase_07 AC 151 ms
10,752 KB
testcase_08 AC 132 ms
10,752 KB
testcase_09 AC 87 ms
10,752 KB
testcase_10 AC 78 ms
10,752 KB
testcase_11 AC 51 ms
10,752 KB
testcase_12 AC 133 ms
10,752 KB
testcase_13 AC 99 ms
10,752 KB
testcase_14 AC 55 ms
10,624 KB
testcase_15 AC 184 ms
10,880 KB
testcase_16 AC 143 ms
10,880 KB
testcase_17 AC 156 ms
10,752 KB
testcase_18 AC 142 ms
10,752 KB
testcase_19 AC 117 ms
10,752 KB
testcase_20 AC 166 ms
10,752 KB
testcase_21 AC 139 ms
10,752 KB
testcase_22 AC 128 ms
10,752 KB
testcase_23 AC 40 ms
10,880 KB
testcase_24 AC 118 ms
10,752 KB
testcase_25 AC 73 ms
10,752 KB
testcase_26 AC 127 ms
10,752 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 26 ms
10,752 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