結果

問題 No.864 四方演算
ユーザー qibqib
提出日時 2023-01-05 12:40:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 405 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 60,724 KB
最終ジャッジ日時 2024-05-06 17:42:46
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,172 KB
testcase_01 AC 50 ms
58,844 KB
testcase_02 AC 45 ms
58,000 KB
testcase_03 AC 46 ms
58,928 KB
testcase_04 AC 46 ms
59,244 KB
testcase_05 AC 43 ms
58,248 KB
testcase_06 AC 48 ms
57,440 KB
testcase_07 AC 47 ms
58,184 KB
testcase_08 AC 50 ms
59,012 KB
testcase_09 AC 42 ms
57,916 KB
testcase_10 AC 42 ms
57,840 KB
testcase_11 AC 39 ms
58,400 KB
testcase_12 AC 45 ms
59,612 KB
testcase_13 AC 42 ms
58,460 KB
testcase_14 AC 39 ms
59,008 KB
testcase_15 AC 49 ms
58,032 KB
testcase_16 AC 46 ms
58,692 KB
testcase_17 AC 47 ms
58,280 KB
testcase_18 AC 50 ms
60,724 KB
testcase_19 AC 44 ms
59,512 KB
testcase_20 AC 49 ms
58,908 KB
testcase_21 AC 47 ms
58,848 KB
testcase_22 AC 46 ms
59,180 KB
testcase_23 AC 38 ms
58,260 KB
testcase_24 AC 45 ms
58,440 KB
testcase_25 AC 45 ms
58,624 KB
testcase_26 AC 46 ms
58,372 KB
testcase_27 AC 34 ms
52,076 KB
testcase_28 AC 36 ms
53,232 KB
testcase_29 AC 35 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

divs = set()
for x in range(1, int(math.sqrt(k)) + 1):
  if k % x == 0:
    divs.add(x)
    if x != k // x:
      divs.add(k // x)
  
ans = 0
for x in divs:
  y = k // x
  cnt = 1
  for d in [x, k // x]:
    if 2 <= d <= n + 1:
      cnt *= (d - 1)
    elif n + 2 <= d <= 2 * n:
      cnt *= (2 * n + 1 - d)
    else:
      cnt = 0

  ans += cnt

print(ans)
0