Re: [gcj] Qualification Round 2019 - Google Code Jam 2019 Cryptopangrams (10pts, 15pts) could any one please check the code results WA though i passed sample test case

2020-03-31 Thread venkata rajesh thotapalli
Ok On Tue, Mar 31, 2020, 11:10 PM PAGADALA SAINADTH wrote: > Ofcourse bro you communicate with me on hangouts > > On Tuesday, March 31, 2020 at 10:48:30 PM UTC+5:30, venkata rajesh > thotapalli wrote: >> >> Hi bro can i have your number to for further communication. Because I >> have some

[gcj] Re: 2019 Qual Rounds - Cryptopangrams: RE on test set 1

2020-03-31 Thread PAGADALA SAINADTH
I too got the same issue, the input range is about 10^100 which we can't do in c++. We should be able to run the testCase 1 but i couldn't pass it, don't know why. https://groups.google.com/d/msg/google-code/4bE6EYLAbHU/UTlasQXpAwAJ On Monday, March 30, 2020 at 6:01:31 AM UTC+5:30, Karim

[gcj] Re: Cryptopanagrams

2020-03-31 Thread PAGADALA SAINADTH
hmm got it. But in general, python and java results in more execution time when compared to c++ right? Is there any alternative when the input is 10^100 *?.* Any way thanks for the reply . On Tuesday, March 31, 2020 at 11:29:54 PM UTC+5:30, porker2008 wrote: > > C++ does not have built-in

[gcj] Re: Cryptopanagrams

2020-03-31 Thread porker2008
C++ does not have built-in support for big integers You can consider using other languages like python or Java(BigInteger) -- You received this message because you are subscribed to the Google Groups "Google Code Jam" group. To unsubscribe from this group and stop receiving emails from it,

Re: [gcj] Qualification Round 2019 - Google Code Jam 2019 Cryptopangrams (10pts, 15pts) could any one please check the code results WA though i passed sample test case

2020-03-31 Thread PAGADALA SAINADTH
Ofcourse bro you communicate with me on hangouts On Tuesday, March 31, 2020 at 10:48:30 PM UTC+5:30, venkata rajesh thotapalli wrote: > > Hi bro can i have your number to for further communication. Because I have > some doubts > > On Tue, Mar 31, 2020, 9:03 PM PAGADALA SAINADTH > wrote: > >>

Re: [gcj] Qualification Round 2019 - Google Code Jam 2019 Cryptopangrams (10pts, 15pts) could any one please check the code results WA though i passed sample test case

2020-03-31 Thread venkata rajesh thotapalli
Hi bro can i have your number to for further communication. Because I have some doubts On Tue, Mar 31, 2020, 9:03 PM PAGADALA SAINADTH wrote: > #include > #include > #include > #include > using namespace std; > int main(){ > ios::sync_with_stdio(0); > cin.tie(0); > int te; >

[gcj] Re: Cryptopanagrams

2020-03-31 Thread PAGADALA SAINADTH
https://github.com/sainadth/CodeJam2019/blob/master/Cryptopangrams.cpp I have written the code in c++ even satisfying your test case. But it results in WA Could please help me dude? On Tuesday, March 31, 2020 at 6:20:26 AM UTC+5:30, porker2008 wrote: > > you can try the following test case > > 1

[gcj] In Cryptopangrams My code is successful executes given sample tests but it is RE when i am submitting can any one place check my code

2020-03-31 Thread venkata rajesh thotapalli
import java.util.*; import java.math.BigInteger; class Solution { public static void main(String arr[]) { Scanner p=new Scanner(System.in); int t=p.nextInt(); int im=1; while(t>=1) {

[gcj] Qualification Round 2019 - Google Code Jam 2019 Cryptopangrams (10pts, 15pts) could any one please check the code results WA though i passed sample test case

2020-03-31 Thread PAGADALA SAINADTH
#include #include #include #include using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); int te; cin>>te; for(int i = 1; i <= te; i++){ int limit; cin>>limit; int length; cin>>length; int primes[length+1]; int products[length];