CSES - Aalto Competitive Programming 2024 - wk8 - Mon - Results
Submission details
Task:a times b
Sender:Farah
Submission time:2024-10-28 16:44:07 +0200
Language:Python2 (PyPy2)
Status:READY
Result:
Test results
testverdicttime
#10.04 sdetails
#20.03 sdetails
#30.03 sdetails
#40.03 sdetails
#50.03 sdetails
#60.03 sdetails
#70.04 sdetails
#80.03 sdetails
#90.03 sdetails
#100.04 sdetails
#110.03 sdetails
#120.03 sdetails
#130.03 sdetails
#140.03 sdetails
#150.04 sdetails
#160.04 sdetails
#170.03 sdetails
#180.03 sdetails
#190.03 sdetails
#200.04 sdetails
#210.03 sdetails
#220.03 sdetails
#230.03 sdetails
#240.03 sdetails
#250.03 sdetails
#260.03 sdetails
#270.03 sdetails
#280.04 sdetails
#290.03 sdetails
#300.03 sdetails
#310.03 sdetails
#320.03 sdetails
#330.03 sdetails
#340.03 sdetails
#350.03 sdetails
#360.03 sdetails
#370.03 sdetails
#380.03 sdetails
#390.03 sdetails
#400.03 sdetails
#410.03 sdetails
#420.03 sdetails
#430.03 sdetails
#440.04 sdetails
#450.03 sdetails
#460.03 sdetails
#470.03 sdetails
#480.03 sdetails
#490.03 sdetails
#500.03 sdetails
#510.03 sdetails
#520.03 sdetails
#530.03 sdetails
#540.03 sdetails
#550.03 sdetails
#560.03 sdetails
#570.03 sdetails
#580.03 sdetails
#590.03 sdetails
#600.03 sdetails

Code

import sys

def main():
    try:
        # Read the input numbers
        a = int(sys.stdin.readline().strip())
        b = int(sys.stdin.readline().strip())

        # Debug print to check values
        print(f"Debug: a = {a}, b = {b}")

        # Calculate the product
        result = a * b

        # Print the result
        print(result)
    except ValueError:
        print("Error: Invalid input. Please enter valid integers.")
    except Exception as e:
        print(f"An unexpected error occurred: {e}")

if __name__ == "__main__":
    main()

Test details

Test 1

Verdict:

input
8
5

correct output
40

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 2

Verdict:

input
9
1

correct output
9

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 3

Verdict:

input
9
5

correct output
45

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 4

Verdict:

input
2
5

correct output
10

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 5

Verdict:

input
8
7

correct output
56

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 6

Verdict:

input
48
92

correct output
4416

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 7

Verdict:

input
1
40

correct output
40

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 8

Verdict:

input
97
74

correct output
7178

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 9

Verdict:

input
58
8

correct output
464

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 10

Verdict:

input
15
24

correct output
360

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 11

Verdict:

input
4
7

correct output
28

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 12

Verdict:

input
906
417

correct output
377802

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 13

Verdict:

input
778
105

correct output
81690

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 14

Verdict:

input
2
989

correct output
1978

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 15

Verdict:

input
2830
5329

correct output
15081070

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 16

Verdict:

input
9
51382

correct output
462438

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 17

Verdict:

input
25053
71372

correct output
1788082716

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 18

Verdict:

input
258180
674616

correct output
174172358880

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 19

Verdict:

input
8821
2

correct output
17642

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 20

Verdict:

input
1742712
9600618

correct output
16731112196016

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 21

Verdict:

input
8898606
2936506

correct output
26130809910636

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 22

Verdict:

input
82670092
60138633

correct output
4971666322864236

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 23

Verdict:

input
54746871
83822602

correct output
4589025178578342

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 24

Verdict:

input
477252461
1032684

correct output
492850980435324

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 25

Verdict:

input
5932935
379

correct output
2248582365

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 26

Verdict:

input
620114
3126641

correct output
1938873857074

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 27

Verdict:

input
452757081
222748761

correct output
100851078826726641

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 28

Verdict:

input
689748332
888826746

correct output
613066765490487672

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 29

Verdict:

input
111337
25

correct output
2783425

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 30

Verdict:

input
809
84435378

correct output
68308220802

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 31

Verdict:

input
9641697369926504411
425970950212942028697061039529...

correct output
410708299033321711216812810174...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 32

Verdict:

input
793769623129909085108356241071...

correct output
264404012608186879272715560773...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 33

Verdict:

input
8539777831492675800
436

correct output
3723343134530806648800

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 34

Verdict:

input
946492187160898604892390431179...

correct output
585982368537725512535970251461...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 35

Verdict:

input
874046401974324184707688863838...

correct output
174556202198322810668657866310...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 36

Verdict:

input
168584663428092347854539803060...

correct output
235958453587245776929148968707...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 37

Verdict:

input
279013912031336395843652482056...

correct output
856375236460411618343887929304...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 38

Verdict:

input
909594443312661242668561455177...

correct output
801297086685128929836268694647...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 39

Verdict:

input
521558480102200460144622364590...

correct output
403176935665359352292583479223...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 40

Verdict:

input
198766521920629467015839613580...

correct output
197951285207558548760833360414...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 41

Verdict:

input
388239940637354291806784217812...

correct output
354893636094929851749498258576...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 42

Verdict:

input
580031950564534684773525167998...

correct output
225288306472433597677862095876...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 43

Verdict:

input
673497493525004204568833306269...

correct output
104167516519697053781119530996...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 44

Verdict:

input
583582406474458495157747860432...

correct output
355985267949419682046226194863...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 45

Verdict:

input
154401310284121033413839709675...

correct output
472687322036571910421947159369...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 46

Verdict:

input
964784520177212016698
135881607827957154173561484162...

correct output
131096471809203739325264543904...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 47

Verdict:

input
506417941420848908877158785176...

correct output
124940484872553056181800567857...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 48

Verdict:

input
278205703909200971326699489015...

correct output
213362541886605761113025837459...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 49

Verdict:

input
488919747667763730629078434642...

correct output
244261035002054726047225565934...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 50

Verdict:

input
683013292533355268532590162229...

correct output
271255985219635665074840248062...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 51

Verdict:

input
701382950383712289025758984281...

correct output
396240397875971182850884660551...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 52

Verdict:

input
950530137216618089651057517232...

correct output
525100658977646195130452101103...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 53

Verdict:

input
758180874616256083097058082046...

correct output
612777382638418549100062437996...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 54

Verdict:

input
282198270649528096385750216226...

correct output
878945962031578099916769892430...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 55

Verdict:

input
374271236006180996628555027124...

correct output
205927043926518428842129271440...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 56

Verdict:

input
789860669365068182777748873091...

correct output
369460448033120451265094062370...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 57

Verdict:

input
826700926013863385104801713448...

correct output
291751287859134397942962144651...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 58

Verdict:

input
947468718382260248801518078140...

correct output
226868697296935607336651841496...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 59

Verdict:

input
177252461103268440789803954968...

correct output
111876380249200192763403085310...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')

Test 60

Verdict:

input
393293577943612353036749957226...

correct output
336630505716557163667422969707...

user output
(empty)

Error:
File "input/code.py", line 10
    print(f"Debug: a = {a}, b = {b}")
           ^
SyntaxError: invalid syntax (expected ')')