結果
問題 | No.1918 Simple Math ? |
ユーザー | kozy |
提出日時 | 2022-04-29 23:15:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 273,140 KB |
最終ジャッジ日時 | 2024-06-29 04:58:31 |
合計ジャッジ時間 | 10,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 847 ms
211,656 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
def f(n): a=int(n**0.5) for i in range(-3,3): if (a+i)**2<=n<(a+i+1)**2: return a+i T=int(input()) mod=10**9+7 for _ in range(T): a,N=map(int,input().split()) ans=0 d=dict() d[0]=1 for i in range(1,a): if i>N: break ans+=f(a*i) ans%=mod if f(i*a) not in d: d[f(i*a)]=0 d[f(i*a)]+=1 if a-1>=N: print(ans) continue #print(d) x=f(N//a) x+=1 #x>=1 s1=0 s2=0 s3=0 kosu=0 #print(ans) for i in d: s1+=i*d[i]%mod s2+=i s3+=d[i] kosu+=1 s1%=mod s2%=mod s3%=mod if x>=3: ans+=s1*(x-1)%mod ans+=(2*a*kosu%mod*((x-2)*(x-1)*(2*x-3))//6)%mod ans+=(((x-2)*(x-1))//2)*a%mod*s3%mod ans+=(((x-2)*(x-1))//2)*2*s2%mod ans%=mod #(x**2)*a~N #print(ans) #print(x) kk=N-(((x-1)**2)*a)+1 #print(kk) for i in d: if kk-(d[i]+2*(x-1))<=0: ans+=kk*(i+a*(x-1))%mod ans%=mod break else: kk-=(d[i]+2*(x-1)) kk%=mod ans+=(i+a*(x-1))*(d[i]+2*(x-1))%mod ans%=mod print(ans)