結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 49 ms
58,580 KB
testcase_03 AC 49 ms
59,288 KB
testcase_04 AC 52 ms
59,468 KB
testcase_05 AC 49 ms
58,196 KB
testcase_06 AC 53 ms
58,168 KB
testcase_07 AC 51 ms
58,096 KB
testcase_08 AC 49 ms
58,180 KB
testcase_09 AC 46 ms
59,556 KB
testcase_10 AC 45 ms
58,372 KB
testcase_11 AC 42 ms
58,724 KB
testcase_12 AC 49 ms
58,788 KB
testcase_13 AC 46 ms
58,428 KB
testcase_14 AC 43 ms
58,900 KB
testcase_15 AC 53 ms
58,072 KB
testcase_16 AC 49 ms
59,424 KB
testcase_17 AC 52 ms
58,164 KB
testcase_18 AC 52 ms
59,200 KB
testcase_19 AC 47 ms
58,076 KB
testcase_20 AC 53 ms
59,164 KB
testcase_21 AC 50 ms
58,484 KB
testcase_22 AC 51 ms
59,048 KB
testcase_23 AC 42 ms
58,452 KB
testcase_24 AC 49 ms
58,292 KB
testcase_25 AC 45 ms
57,988 KB
testcase_26 AC 50 ms
58,200 KB
testcase_27 AC 37 ms
53,076 KB
testcase_28 AC 37 ms
52,900 KB
testcase_29 AC 37 ms
53,704 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

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

    ans += a*b*2

print(ans)
0