結果
問題 | No.1201 お菓子配り-4 |
ユーザー | mine691 |
提出日時 | 2020-11-27 11:57:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 31,360 KB |
最終ジャッジ日時 | 2025-01-16 06:02:49 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
5,248 KB |
testcase_01 | AC | 923 ms
5,248 KB |
testcase_02 | AC | 1,341 ms
5,248 KB |
testcase_03 | AC | 642 ms
5,248 KB |
testcase_04 | AC | 312 ms
5,248 KB |
testcase_05 | AC | 795 ms
5,248 KB |
testcase_06 | AC | 121 ms
5,248 KB |
testcase_07 | AC | 361 ms
5,248 KB |
testcase_08 | AC | 990 ms
5,248 KB |
testcase_09 | AC | 730 ms
5,248 KB |
testcase_10 | AC | 6 ms
5,248 KB |
testcase_11 | AC | 186 ms
5,248 KB |
testcase_12 | AC | 1,514 ms
5,248 KB |
testcase_13 | AC | 41 ms
5,248 KB |
testcase_14 | AC | 19 ms
5,248 KB |
testcase_15 | AC | 1,190 ms
5,248 KB |
testcase_16 | AC | 365 ms
5,248 KB |
testcase_17 | AC | 477 ms
5,248 KB |
testcase_18 | AC | 76 ms
5,248 KB |
testcase_19 | AC | 71 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 0 ms
5,248 KB |
testcase_26 | AC | 1 ms
5,248 KB |
testcase_27 | AC | 0 ms
5,248 KB |
testcase_28 | AC | 1 ms
5,248 KB |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 1,927 ms
5,248 KB |
testcase_31 | AC | 1,926 ms
5,248 KB |
testcase_32 | AC | 1,952 ms
5,248 KB |
testcase_33 | AC | 1,924 ms
5,248 KB |
testcase_34 | AC | 1,924 ms
5,248 KB |
testcase_35 | TLE | - |
コンパイルメッセージ
main.cpp:32:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type] 32 | main() | ^~~~ main.cpp: In function ‘int main()’: main.cpp:34:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | scanf("%d%d",&N,&M); | ~~~~~^~~~~~~~~~~~~~ main.cpp:35:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | for(int i=0;i<N;i++)scanf("%d",&A[i]); | ~~~~~^~~~~~~~~~~~ main.cpp:36:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | for(int i=0;i<M;i++)scanf("%d",&B[i]); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<cstdio> using namespace std; #pragma GCC optimize ("O3") #pragma GCC target ("avx2") #pragma GCC optimize("unroll-loops") unsigned long long floor_sum(unsigned long long N,unsigned long long M,unsigned long long A,unsigned long long B) //Sum[floor((A*i+B)/M),{i,0,N-1}] { unsigned long long ans=0; if(A>=M) { unsigned long long AM=A/M; ans+=N*(N-1)/2*AM; A-=AM*M; } if(B>=M) { unsigned long long BM=B/M; ans+=N*BM; B-=BM*M; } unsigned long long Ym=(A*N+B)/M,Xm=Ym*M-B; if(Ym==0)return ans; unsigned long long TX=(Xm+A-1)/A; ans+=(N-TX)*Ym; ans+=floor_sum(Ym,A,M,TX*A-Xm); return ans; } int N,M; int A[2000],B[2000]; main() { scanf("%d%d",&N,&M); for(int i=0;i<N;i++)scanf("%d",&A[i]); for(int i=0;i<M;i++)scanf("%d",&B[i]); unsigned long ans=0; for(int i=0;i<N;i++)for(int j=0;j<M;j++) { ans+=2*floor_sum(B[j],B[j],A[i],A[i]); if(ans > 1e9+7) ans%=(int)1e9+7; } printf("%lu\n",ans); }