結果

問題 No.864 四方演算
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-28 23:09:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 168 ms / 1,000 ms
コード長 297 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-07 22:23:32
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,624 KB
testcase_01 AC 165 ms
10,880 KB
testcase_02 AC 117 ms
10,880 KB
testcase_03 AC 136 ms
10,624 KB
testcase_04 AC 151 ms
10,752 KB
testcase_05 AC 112 ms
10,624 KB
testcase_06 AC 150 ms
10,752 KB
testcase_07 AC 134 ms
10,752 KB
testcase_08 AC 121 ms
10,880 KB
testcase_09 AC 79 ms
10,880 KB
testcase_10 AC 75 ms
10,624 KB
testcase_11 AC 48 ms
10,624 KB
testcase_12 AC 123 ms
10,624 KB
testcase_13 AC 93 ms
10,752 KB
testcase_14 AC 50 ms
10,752 KB
testcase_15 AC 168 ms
10,752 KB
testcase_16 AC 129 ms
10,624 KB
testcase_17 AC 142 ms
10,752 KB
testcase_18 AC 130 ms
11,008 KB
testcase_19 AC 104 ms
10,752 KB
testcase_20 AC 159 ms
10,752 KB
testcase_21 AC 127 ms
10,624 KB
testcase_22 AC 116 ms
10,880 KB
testcase_23 AC 35 ms
10,752 KB
testcase_24 AC 106 ms
10,624 KB
testcase_25 AC 68 ms
10,880 KB
testcase_26 AC 124 ms
10,624 KB
testcase_27 AC 24 ms
10,880 KB
testcase_28 AC 23 ms
10,880 KB
testcase_29 AC 23 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

div = set()
for i in range(1, int(K**.5)+1):
    if K % i == 0:
        div.add(i)
        div.add(K//i)


def cnt(X):
    L = max(1, X-N)
    R = min(X-1, N)
    return max(0, R-L+1)


ans = 0
for x in list(div):
    y = K//x
    ans += cnt(x)*cnt(y)
print(ans)
0