結果

問題 No.864 四方演算
ユーザー 双六双六
提出日時 2020-07-24 20:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 633 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-06-25 19:28:42
合計ジャッジ時間 2,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 64 ms
59,520 KB
testcase_02 AC 55 ms
59,392 KB
testcase_03 AC 56 ms
58,880 KB
testcase_04 AC 63 ms
59,264 KB
testcase_05 AC 53 ms
59,008 KB
testcase_06 AC 57 ms
58,752 KB
testcase_07 AC 55 ms
59,008 KB
testcase_08 AC 55 ms
59,008 KB
testcase_09 AC 51 ms
59,136 KB
testcase_10 AC 51 ms
59,008 KB
testcase_11 AC 48 ms
59,008 KB
testcase_12 AC 54 ms
59,136 KB
testcase_13 AC 52 ms
59,136 KB
testcase_14 AC 49 ms
59,008 KB
testcase_15 AC 59 ms
59,136 KB
testcase_16 AC 58 ms
59,008 KB
testcase_17 AC 57 ms
59,648 KB
testcase_18 AC 58 ms
59,648 KB
testcase_19 AC 53 ms
58,752 KB
testcase_20 AC 58 ms
59,008 KB
testcase_21 AC 55 ms
59,008 KB
testcase_22 AC 55 ms
59,008 KB
testcase_23 AC 48 ms
59,008 KB
testcase_24 AC 54 ms
58,880 KB
testcase_25 AC 50 ms
58,880 KB
testcase_26 AC 55 ms
58,752 KB
testcase_27 AC 44 ms
53,760 KB
testcase_28 AC 44 ms
53,760 KB
testcase_29 AC 43 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	K = int(input())
	ans = 0
	M = int(K ** 0.5 // 1)
	for i in range(1, M + 1):
		if K % i == 0:
			j = int(K // i)
			if i <= N:
				a = i - 1
			else:
				a = max(2 * N - i + 1, 0)

			if j <= N:
				b = j - 1
			else:
				b = max(2 * N - j + 1, 0)

			# print(i, j, a, b)

			if i == j:
				ans += a * b
			else:
				ans += 2 * a * b

	print(ans)

if __name__ == '__main__':
	main()
0