結果

問題 No.864 四方演算
ユーザー nep_pudding3nep_pudding3
提出日時 2019-08-16 21:56:53
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 284 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 59,860 KB
最終ジャッジ日時 2024-09-24 18:03:53
合計ジャッジ時間 2,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 46 ms
59,168 KB
testcase_03 AC 50 ms
58,208 KB
testcase_04 AC 47 ms
58,440 KB
testcase_05 AC 44 ms
59,236 KB
testcase_06 AC 47 ms
59,396 KB
testcase_07 AC 46 ms
58,912 KB
testcase_08 AC 46 ms
58,012 KB
testcase_09 AC 43 ms
58,568 KB
testcase_10 AC 41 ms
58,380 KB
testcase_11 AC 40 ms
58,212 KB
testcase_12 AC 47 ms
58,260 KB
testcase_13 AC 43 ms
58,408 KB
testcase_14 AC 39 ms
58,092 KB
testcase_15 AC 50 ms
57,564 KB
testcase_16 AC 47 ms
58,444 KB
testcase_17 AC 48 ms
59,476 KB
testcase_18 AC 47 ms
59,836 KB
testcase_19 AC 45 ms
58,772 KB
testcase_20 AC 49 ms
58,132 KB
testcase_21 AC 48 ms
59,860 KB
testcase_22 AC 48 ms
58,852 KB
testcase_23 AC 38 ms
58,472 KB
testcase_24 AC 46 ms
58,776 KB
testcase_25 AC 42 ms
59,600 KB
testcase_26 AC 46 ms
58,240 KB
testcase_27 AC 35 ms
52,008 KB
testcase_28 AC 34 ms
52,708 KB
testcase_29 AC 36 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
K = int(input())
ans = 0
for i in range(2,int(K**0.5)+1):
    if K%i == 0:
        ac = min(i-1,max(0,N*2-i+1))
        j = K//i
        bd = min(j-1,max(0,N*2-j+1))
        ans += ac*bd*2

if K**0.5 % 1 == 0:
    ans -= min(K**0.5-1,max(0,N*2-(K**0.5)+1))
print(ans)
0