結果

問題 No.2891 Mint
ユーザー vwxyzvwxyz
提出日時 2024-09-13 22:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 277,328 KB
最終ジャッジ日時 2024-09-13 22:20:45
合計ジャッジ時間 14,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 45 ms
59,392 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 435 ms
258,516 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 465 ms
277,328 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 38 ms
52,000 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 335 ms
209,388 KB
testcase_18 AC 229 ms
165,496 KB
testcase_19 AC 211 ms
151,580 KB
testcase_20 AC 313 ms
205,008 KB
testcase_21 AC 227 ms
151,408 KB
testcase_22 AC 368 ms
232,808 KB
testcase_23 AC 169 ms
140,276 KB
testcase_24 AC 304 ms
204,128 KB
testcase_25 AC 421 ms
246,804 KB
testcase_26 AC 375 ms
236,744 KB
testcase_27 AC 362 ms
232,800 KB
testcase_28 AC 398 ms
251,016 KB
testcase_29 AC 238 ms
153,740 KB
testcase_30 AC 313 ms
205,964 KB
testcase_31 AC 246 ms
156,980 KB
testcase_32 AC 337 ms
210,456 KB
testcase_33 AC 258 ms
171,024 KB
testcase_34 AC 272 ms
184,028 KB
testcase_35 AC 306 ms
205,140 KB
testcase_36 AC 324 ms
205,916 KB
testcase_37 AC 325 ms
214,336 KB
testcase_38 AC 338 ms
205,944 KB
testcase_39 AC 373 ms
240,288 KB
testcase_40 AC 379 ms
240,404 KB
testcase_41 AC 239 ms
170,812 KB
testcase_42 AC 37 ms
51,584 KB
testcase_43 AC 38 ms
51,968 KB
testcase_44 AC 38 ms
51,712 KB
testcase_45 AC 37 ms
52,352 KB
testcase_46 AC 37 ms
51,712 KB
testcase_47 AC 390 ms
236,516 KB
testcase_48 AC 364 ms
236,268 KB
testcase_49 AC 402 ms
259,032 KB
testcase_50 AC 131 ms
118,592 KB
testcase_51 AC 316 ms
205,652 KB
testcase_52 AC 125 ms
113,660 KB
testcase_53 AC 252 ms
171,644 KB
testcase_54 AC 335 ms
206,036 KB
testcase_55 AC 103 ms
106,944 KB
testcase_56 AC 408 ms
258,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Inverse_Proportion(N):
    retu=[]
    for i in range(1,N+1):
        if i==N or N//i>N//(i+1):
            retu.append(((i,i+1),N//i))
        else:
            for j in range(N//i,0,-1):
                retu.append(((N//(j+1)+1,N//j+1),j))
            break
    return retu

N,M=map(int,input().split())
mod=998244353
ans=N*M
for (l,r),x in Inverse_Proportion(M):
    l=min(l,N+1)
    r=min(r,N+1)
    ans-=x*(l+r-1)*(r-l)//2
    ans%=mod
print(ans)
0