結果

問題 No.864 四方演算
ユーザー kumatan400kumatan400
提出日時 2021-09-05 06:41:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 280 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 59,780 KB
最終ジャッジ日時 2024-06-01 11:34:06
合計ジャッジ時間 2,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,068 KB
testcase_01 AC 57 ms
58,912 KB
testcase_02 AC 50 ms
57,972 KB
testcase_03 AC 50 ms
57,892 KB
testcase_04 AC 52 ms
59,584 KB
testcase_05 AC 48 ms
59,652 KB
testcase_06 AC 53 ms
59,564 KB
testcase_07 AC 51 ms
58,584 KB
testcase_08 AC 53 ms
57,904 KB
testcase_09 AC 46 ms
58,192 KB
testcase_10 AC 46 ms
57,832 KB
testcase_11 AC 43 ms
58,196 KB
testcase_12 AC 50 ms
58,048 KB
testcase_13 AC 46 ms
59,520 KB
testcase_14 AC 44 ms
58,372 KB
testcase_15 AC 53 ms
58,248 KB
testcase_16 AC 49 ms
58,644 KB
testcase_17 AC 52 ms
59,780 KB
testcase_18 AC 52 ms
59,300 KB
testcase_19 AC 49 ms
59,000 KB
testcase_20 AC 53 ms
58,744 KB
testcase_21 AC 52 ms
58,440 KB
testcase_22 AC 50 ms
58,736 KB
testcase_23 AC 42 ms
59,252 KB
testcase_24 AC 49 ms
59,536 KB
testcase_25 AC 45 ms
58,812 KB
testcase_26 AC 50 ms
59,380 KB
testcase_27 AC 38 ms
52,872 KB
testcase_28 AC 38 ms
52,560 KB
testcase_29 AC 38 ms
52,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
for a in range(1, int(K**0.5)+1):
    if K % a != 0:
        continue
    b = K // a

    na = min(a-1, max(0, 2*N-a+1))
    nb = min(b-1, max(0, 2*N-b+1))

    if a == b:
        ans += na*nb
    else:
        ans += na*nb*2

print(ans)
0