結果

問題 No.864 四方演算
ユーザー roarisroaris
提出日時 2019-08-17 14:30:39
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 564 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 59,916 KB
最終ジャッジ日時 2024-09-25 10:50:35
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,324 KB
testcase_01 WA -
testcase_02 AC 50 ms
58,916 KB
testcase_03 AC 51 ms
58,808 KB
testcase_04 AC 53 ms
58,156 KB
testcase_05 AC 48 ms
59,164 KB
testcase_06 AC 52 ms
59,248 KB
testcase_07 AC 51 ms
58,616 KB
testcase_08 AC 48 ms
58,616 KB
testcase_09 AC 46 ms
58,500 KB
testcase_10 AC 44 ms
59,508 KB
testcase_11 AC 43 ms
58,556 KB
testcase_12 AC 50 ms
58,316 KB
testcase_13 AC 47 ms
59,416 KB
testcase_14 AC 43 ms
58,976 KB
testcase_15 AC 54 ms
58,124 KB
testcase_16 AC 50 ms
59,780 KB
testcase_17 AC 52 ms
58,076 KB
testcase_18 AC 52 ms
59,024 KB
testcase_19 AC 48 ms
58,272 KB
testcase_20 AC 53 ms
58,584 KB
testcase_21 AC 51 ms
58,420 KB
testcase_22 AC 50 ms
59,660 KB
testcase_23 AC 43 ms
58,372 KB
testcase_24 AC 49 ms
58,948 KB
testcase_25 AC 45 ms
58,564 KB
testcase_26 AC 50 ms
59,916 KB
testcase_27 AC 38 ms
52,572 KB
testcase_28 AC 38 ms
54,140 KB
testcase_29 AC 38 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil

N = int(input())
K = int(input())
ans = 0

for i in range(1, int(K**0.5)+1):
    if K % i == 0:
        P, Q = i, K // i
        
        if N >= P - 1 and N >= Q - 1:
            add = 2 * (P - 1) * (Q - 1)
        elif N >= P - 1 and Q - 2 >= N >= ceil(Q / 2):
            add = 2 * (P - 1) * (2 * N - Q + 1)
        elif P - 2 >= N >= ceil(P / 2) and N >= Q - 1:
            add = 2 * (2 * N - P + 1) * (Q - 1)
        else:
            add = 0
            
        if P == Q:
            add //= 2
        
        ans += add

print(ans)
0