Submission #19461124
Source Code Expand
Copy
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------
int N;
ll A[202020],B[202020];
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>N;
FOR(i,N) cin>>A[i];
FOR(i,N) cin>>B[i];
ll ma=0,mb=0;
ll ret=0;
FOR(i,N) {
ret=max(ret,ma*B[i]);
ret=max(ret,A[i]*B[i]);
ma=max(ma,A[i]);
mb=max(mb,B[i]);
cout<<ret<<endl;
}
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
cout.tie(0); solve(); return 0;
}
Submission Info
Submission Time |
|
Task |
A - Two Sequences 2 |
User |
kmjp |
Language |
C++ (GCC 9.2.1) |
Score |
300 |
Code Size |
1126 Byte |
Status |
AC |
Exec Time |
307 ms |
Memory |
7372 KB |
Compile Error
./Main.cpp: In function ‘void solve()’:
./Main.cpp:20:8: warning: unused variable ‘j’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp:20:10: warning: unused variable ‘k’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp:20:12: warning: unused variable ‘l’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp:20:14: warning: unused variable ‘r’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp:20:16: warning: unused variable ‘x’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp:20:18: warning: unused variable ‘y’ [-Wunused-variable]
20 | int i,j,k,l,r,x,y; string s;
| ^
./Main.cpp: In function ‘int main(int, char**)’:
./Main.cpp:6:28: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
6 | #define FOR(x,to) for(x=0;x<(to);x++)
| ^
./Main.cpp:41:38: note: in expansion of macro ‘FOR’
41 | FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
| ^~~
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
300 / 300 |
Status |
|
|
Set Name |
Test Cases |
Sample |
sample_01.txt, sample_02.txt |
All |
random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, sample_01.txt, sample_02.txt |
Case Name |
Status |
Exec Time |
Memory |
random_01.txt |
AC |
296 ms |
6780 KB |
random_02.txt |
AC |
307 ms |
7372 KB |
random_03.txt |
AC |
307 ms |
7336 KB |
random_04.txt |
AC |
304 ms |
7332 KB |
random_05.txt |
AC |
93 ms |
4512 KB |
random_06.txt |
AC |
19 ms |
3648 KB |
random_07.txt |
AC |
48 ms |
3940 KB |
random_08.txt |
AC |
74 ms |
4248 KB |
random_09.txt |
AC |
141 ms |
4940 KB |
random_10.txt |
AC |
75 ms |
4172 KB |
random_11.txt |
AC |
94 ms |
4484 KB |
random_12.txt |
AC |
23 ms |
3720 KB |
random_13.txt |
AC |
2 ms |
3500 KB |
random_14.txt |
AC |
3 ms |
3572 KB |
random_15.txt |
AC |
2 ms |
3620 KB |
random_16.txt |
AC |
2 ms |
3588 KB |
sample_01.txt |
AC |
2 ms |
3624 KB |
sample_02.txt |
AC |
2 ms |
3668 KB |