[gcj] Re: Cryptopanagrams

2020-03-30 Thread porker2008
you can try the following test case 1 10 3 9 9 15 Expected output would be Case #1: AAAB Explanation A = 3 B = 5 -- 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, send an

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

2020-03-30 Thread Matheus Bueno
same thing here! it works fine locally for the input samples but i get this RE on test set 1 Em segunda-feira, 30 de março de 2020 02:31:31 UTC+2, Karim Elghamry escreveu: > > #include > #include > #include > #include > #include > #include > > std::pair primeFac(int n); > > int main() > {

[gcj] Cryptopanagrams

2020-03-30 Thread driss kahfy
My code written in python 3 run well inTest by I get a wrong answer error "WA" when I submitted it. *def pgdc(a, b):if b == 0 :return areturn pgdc(b, a%b)* *t = int(input())for i in range(1, t + 1):c1 = []c2 = [] n, m = [int(s) for s in

Re: [gcj] 2020 Kickstart - Allocation problem - Python - Runtime Error

2020-03-30 Thread thierry njike
Hello, I’ve explained it Check my solution here: https://github.com/Thierrynjike/Kickstart-2020-round-a-allocation On Mon, 30 Mar 2020 at 04:29, Jake Parratt wrote: > So I'm pretty new to python, but I can get this code to solve the problem > just > fine locally but I keep getting Runtime