-
Notifications
You must be signed in to change notification settings - Fork 161
/
run.log
7053 lines (6992 loc) · 752 KB
/
run.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[2024-03-03T13:10:41Z DEBUG blarun] Results file is: /home/maxheap/blablaconf/results.csv
[2024-03-03T13:10:41Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/HamzaMPSY/submission.cpp"
[2024-03-03T13:10:43Z INFO blarun] Finished compilation of the target: "/tmp/.tmpxyegtj/sol" with exit code: exit status: 0
[2024-03-03T13:10:43Z INFO blarun] Starting correctness checks
[2024-03-03T13:10:43Z DEBUG blarun] The current started process has pid: 137151
[2024-03-03T13:10:43Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:43Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:43Z DEBUG blarun] Correctness execution finished in: 116.029575ms
[2024-03-03T13:10:43Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:10:43Z DEBUG blarun] Comparing output "/tmp/.tmpnDQCgE/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:10:43Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/HamzaMPSY/submission.cpp", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "HamzaMPSY" } with error: No such file or directory (os error 2)
[2024-03-03T13:10:43Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/HelloWorldszz/main.py"
[2024-03-03T13:10:43Z INFO blarun] Starting correctness checks
[2024-03-03T13:10:43Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/HelloWorldszz/main.py" to "/tmp/.tmpsm93Db/main.py"
[2024-03-03T13:10:43Z DEBUG blarun] The current started process has pid: 137168
Traceback (most recent call last):
File "/tmp/.tmpsm93Db/main.py", line 49, in <module>
main()
File "/tmp/.tmpsm93Db/main.py", line 33, in main
city_prices, products = read_input_file('inputM.txt')
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/.tmpsm93Db/main.py", line 11, in read_input_file
with open(filename, 'r') as file:
^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: 'inputM.txt'
[2024-03-03T13:10:43Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:43Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:10:43Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/HelloWorldszz/main.py", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "HelloWorldszz" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:10:43Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/BadRequest/script.js"
[2024-03-03T13:10:43Z INFO blarun] Starting correctness checks
[2024-03-03T13:10:43Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/BadRequest/script.js" to "/tmp/.tmp0BE3Ob/main.js"
[2024-03-03T13:10:43Z DEBUG blarun] The current started process has pid: 137169
[2024-03-03T13:10:43Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:44Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:44Z DEBUG blarun] Correctness execution finished in: 283.322512ms
[2024-03-03T13:10:44Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:10:44Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:10:44Z DEBUG blarun] The current started process has pid: 137184
[2024-03-03T13:10:44Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:44Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:44Z DEBUG blarun] Correctness execution finished in: 280.802632ms
[2024-03-03T13:10:44Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:10:44Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:10:44Z DEBUG blarun] The current started process has pid: 137195
[2024-03-03T13:10:44Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:44Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:44Z DEBUG blarun] Correctness execution finished in: 276.691155ms
[2024-03-03T13:10:44Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/03.in", output: "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:10:44Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:10:44Z DEBUG blarun] The current started process has pid: 137206
[2024-03-03T13:10:44Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:45Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:45Z DEBUG blarun] Correctness execution finished in: 277.690858ms
[2024-03-03T13:10:45Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/04.in", output: "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:10:45Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:10:45Z DEBUG blarun] The current started process has pid: 137217
[2024-03-03T13:10:45Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:45Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:45Z DEBUG blarun] Correctness execution finished in: 291.386208ms
[2024-03-03T13:10:45Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/05.in", output: "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:10:45Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:10:45Z DEBUG blarun] The current started process has pid: 137228
[2024-03-03T13:10:45Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:45Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:45Z DEBUG blarun] Correctness execution finished in: 300.520364ms
[2024-03-03T13:10:45Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/06.in", output: "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:10:45Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:10:45Z DEBUG blarun] The current started process has pid: 137239
[2024-03-03T13:10:45Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:45Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:45Z DEBUG blarun] Correctness execution finished in: 288.017708ms
[2024-03-03T13:10:45Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/07.in", output: "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:10:45Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:10:45Z DEBUG blarun] The current started process has pid: 137250
[2024-03-03T13:10:45Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:46Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:46Z DEBUG blarun] Correctness execution finished in: 281.67475ms
[2024-03-03T13:10:46Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/08.in", output: "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:10:46Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:10:46Z DEBUG blarun] The current started process has pid: 137261
[2024-03-03T13:10:46Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:46Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:46Z DEBUG blarun] Correctness execution finished in: 281.092086ms
[2024-03-03T13:10:46Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/09.in", output: "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:10:46Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:10:46Z DEBUG blarun] The current started process has pid: 137272
[2024-03-03T13:10:46Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:10:46Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:10:46Z DEBUG blarun] Correctness execution finished in: 283.671376ms
[2024-03-03T13:10:46Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/10.in", output: "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:10:46Z DEBUG blarun] Comparing output "/tmp/.tmp0BE3Ob/output.txt" vs "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:10:46Z INFO blarun] Solution passed correctness checks
[2024-03-03T13:10:46Z INFO blarun] Symlinking file from: "/home/maxheap/blablaconf/input.txt" to "/tmp/.tmpKjHMpa/input.txt"
[2024-03-03T13:10:46Z DEBUG blarun] The current started process has pid: 137283
[2024-03-03T13:10:46Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:46Z DEBUG blarun] Child process timed out
[2024-03-03T13:20:46Z DEBUG blarun] Killed with exit code: None
[2024-03-03T13:20:46Z INFO blarun] Submission from user: BadRequest has finished with verdict: Tle and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:20:46Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/mohammedfatihX/Main.java"
[2024-03-03T13:20:47Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpreSjYr/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:47Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:47Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/mohammedfatihX/Main.java" to "/tmp/.tmpedcZge/Main.java"
[2024-03-03T13:20:47Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:20:48Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpedcZge/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:48Z DEBUG blarun] The current started process has pid: 137383
[2024-03-03T13:20:48Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at java.base/java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:564)
at java.base/java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:591)
at java.base/java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:689)
at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateParallel(ForEachOps.java:159)
at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateParallel(ForEachOps.java:173)
at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596)
at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:679)
at Main.processing(Main.java:29)
at Main.main(Main.java:22)
Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 2 out of bounds for length 1
at Main.lambda$processing$2(Main.java:30)
at java.base/java.util.stream.Collectors.lambda$summingDouble$27(Collectors.java:732)
at java.base/java.util.stream.Collectors.lambda$groupingByConcurrent$59(Collectors.java:1315)
at java.base/java.util.stream.Collectors$1PairBox.add(Collectors.java:1978)
at java.base/java.util.stream.ReferencePipeline.lambda$collect$1(ReferencePipeline.java:679)
at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183)
at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
at java.base/java.nio.file.FileChannelLinesSpliterator.forEachRemaining(FileChannelLinesSpliterator.java:133)
at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
at java.base/java.util.stream.ForEachOps$ForEachTask.compute(ForEachOps.java:290)
at java.base/java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:754)
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
[2024-03-03T13:20:48Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:20:48Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/mohammedfatihX/Main.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "mohammedfatihX" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:20:48Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/ayoubkassi/GeeksChallenge.java"
[2024-03-03T13:20:49Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpuUmtZk/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:49Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:49Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/ayoubkassi/GeeksChallenge.java" to "/tmp/.tmpSdkWv7/Main.java"
[2024-03-03T13:20:49Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:20:50Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpSdkWv7/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:50Z DEBUG blarun] The current started process has pid: 137494
[2024-03-03T13:20:50Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
at Main.saveDataOutput(Main.java:42)
at Main.main(Main.java:90)
[2024-03-03T13:20:50Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:20:50Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/ayoubkassi/GeeksChallenge.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "ayoubkassi" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:20:50Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/abdelmajidhafidi/main.php"
[2024-03-03T13:20:50Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:50Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/abdelmajidhafidi/main.php" to "/tmp/.tmpummnJr/sol.php"
[2024-03-03T13:20:50Z DEBUG blarun] The current started process has pid: 137528
[2024-03-03T13:20:50Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:50Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:50Z DEBUG blarun] Correctness execution finished in: 85.253523ms
[2024-03-03T13:20:50Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:20:50Z DEBUG blarun] Comparing output "/tmp/.tmpummnJr/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:20:50Z DEBUG blarun] The current started process has pid: 137529
[2024-03-03T13:20:50Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:50Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:50Z DEBUG blarun] Correctness execution finished in: 82.812665ms
[2024-03-03T13:20:50Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:20:50Z DEBUG blarun] Comparing output "/tmp/.tmpummnJr/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:20:50Z INFO blarun] Solution comparison failed, output for the solution is: Layoune 45875.01
Plum 1.09
Rutabaga 1.1
Eggplant 1.16
Green_Beans 1.19
Acorn_Squash 1.29
expected output is Layoune 45875.01
Plum 1.09
Rutabaga 1.10
Eggplant 1.16
Green_Beans 1.19
Acorn_Squash 1.29
[2024-03-03T13:20:50Z INFO blarun] Solution didn't pass correctness check, aborting early!
[2024-03-03T13:20:50Z INFO blarun] Solution failed correctness checks, exiting early
[2024-03-03T13:20:50Z INFO blarun] Submission from user: abdelmajidhafidi has finished with verdict: Wa and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:20:50Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/gitRedDev/Main.java"
[2024-03-03T13:20:51Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpw5LT78/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:51Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:51Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/gitRedDev/Main.java" to "/tmp/.tmp5KYdhV/Main.java"
[2024-03-03T13:20:51Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:20:51Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmp5KYdhV/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:51Z DEBUG blarun] The current started process has pid: 137594
[2024-03-03T13:20:51Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.NullPointerException
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at java.base/java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:564)
at java.base/java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:591)
at java.base/java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:689)
at java.base/java.util.stream.Nodes.collect(Nodes.java:328)
at java.base/java.util.stream.ReferencePipeline.evaluateToNode(ReferencePipeline.java:111)
at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:570)
at java.base/java.util.stream.AbstractPipeline.evaluateToArrayNode(AbstractPipeline.java:260)
at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:616)
at java.base/java.util.stream.ReferencePipeline.toArray(ReferencePipeline.java:622)
at java.base/java.util.stream.ReferencePipeline.toList(ReferencePipeline.java:627)
at Main.main(Main.java:85)
Caused by: java.lang.NullPointerException: Cannot invoke "java.lang.Short.shortValue()" because the return value of "java.util.Map.get(Object)" is null
at Main.lambda$main$4(Main.java:84)
at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
at java.base/java.nio.file.FileChannelLinesSpliterator.forEachRemaining(FileChannelLinesSpliterator.java:133)
at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
at java.base/java.util.stream.Nodes$CollectorTask.doLeaf(Nodes.java:2183)
at java.base/java.util.stream.Nodes$CollectorTask.doLeaf(Nodes.java:2149)
at java.base/java.util.stream.AbstractTask.compute(AbstractTask.java:327)
at java.base/java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:754)
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
[2024-03-03T13:20:51Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:20:51Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/gitRedDev/Main.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "gitRedDev" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:20:51Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/AbdelaliELMANTAGUI/Main.java"
[2024-03-03T13:20:52Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpPyoUBe/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:52Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:52Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/AbdelaliELMANTAGUI/Main.java" to "/tmp/.tmpGE1g0M/Main.java"
[2024-03-03T13:20:52Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:20:53Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpGE1g0M/Main.java" with exit code: exit status: 0
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137705
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
at Main.lambda$solve$1(Main.java:30)
at java.base/java.util.stream.ReduceOps$1ReducingSink.accept(ReduceOps.java:80)
at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
at java.base/java.nio.file.FileChannelLinesSpliterator.forEachRemaining(FileChannelLinesSpliterator.java:133)
at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921)
at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.base/java.util.stream.ReferencePipeline.reduce(ReferencePipeline.java:667)
at Main.solve(Main.java:28)
at Main.main(Main.java:18)
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:20:53Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/AbdelaliELMANTAGUI/Main.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "AbdelaliELMANTAGUI" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:20:53Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/Utchiha555/main.c"
[2024-03-03T13:20:53Z INFO blarun] Finished compilation of the target: "/tmp/.tmpvri3lt/sol" with exit code: exit status: 0
[2024-03-03T13:20:53Z INFO blarun] Starting correctness checks
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137744
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 62.468111ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137745
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 60.015827ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137746
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 59.30357ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/03.in", output: "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137747
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 60.847284ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/04.in", output: "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137748
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 60.648688ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/05.in", output: "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137749
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 59.340799ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/06.in", output: "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137750
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:53Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:53Z DEBUG blarun] Correctness execution finished in: 59.788308ms
[2024-03-03T13:20:53Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/07.in", output: "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:20:53Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:20:53Z DEBUG blarun] The current started process has pid: 137751
[2024-03-03T13:20:53Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:54Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:54Z DEBUG blarun] Correctness execution finished in: 60.377375ms
[2024-03-03T13:20:54Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/08.in", output: "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:20:54Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:20:54Z DEBUG blarun] The current started process has pid: 137752
[2024-03-03T13:20:54Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:54Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:54Z DEBUG blarun] Correctness execution finished in: 60.853475ms
[2024-03-03T13:20:54Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/09.in", output: "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:20:54Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:20:54Z DEBUG blarun] The current started process has pid: 137753
[2024-03-03T13:20:54Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:20:54Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:20:54Z DEBUG blarun] Correctness execution finished in: 61.211022ms
[2024-03-03T13:20:54Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/10.in", output: "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:20:54Z DEBUG blarun] Comparing output "/tmp/.tmpaorYCL/output.txt" vs "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:20:54Z INFO blarun] Solution passed correctness checks
[2024-03-03T13:20:54Z INFO blarun] Dropping the file cache
[2024-03-03T13:20:55Z INFO blarun] Symlinking file from: "/home/maxheap/blablaconf/input.txt" to "/tmp/.tmpvri3lt/input.txt"
[2024-03-03T13:20:55Z DEBUG blarun] Starting execution #0
[2024-03-03T13:20:55Z DEBUG blarun] The current started process has pid: 137756
[2024-03-03T13:20:55Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:30:55Z DEBUG blarun] Child process timed out
[2024-03-03T13:30:55Z DEBUG blarun] Killed with exit code: None
[2024-03-03T13:30:55Z INFO blarun] Submission from user: Utchiha555 has finished with verdict: Tle and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:30:55Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/joel071/Main.java"
[2024-03-03T13:30:56Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpAgWiXW/Main.java" with exit code: exit status: 0
[2024-03-03T13:30:56Z INFO blarun] Starting correctness checks
[2024-03-03T13:30:56Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/joel071/Main.java" to "/tmp/.tmpAmVq1z/Main.java"
[2024-03-03T13:30:56Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:30:57Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpAmVq1z/Main.java" with exit code: exit status: 0
[2024-03-03T13:30:57Z DEBUG blarun] The current started process has pid: 137837
[2024-03-03T13:30:57Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.StringIndexOutOfBoundsException
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
at java.base/java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:564)
at java.base/java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:591)
at java.base/java.util.concurrent.ForkJoinTask.invoke(ForkJoinTask.java:689)
at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateParallel(ReduceOps.java:927)
at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:233)
at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682)
at Main.main(Main.java:25)
Caused by: java.lang.StringIndexOutOfBoundsException: begin 0, end -1, length 0
at java.base/java.lang.String.checkBoundsBeginEnd(String.java:4606)
at java.base/java.lang.String.substring(String.java:2709)
at Main.lambda$main$0(Main.java:29)
at java.base/java.util.stream.Collectors.lambda$groupingBy$53(Collectors.java:1142)
at java.base/java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169)
at java.base/java.util.Spliterators$ArraySpliterator.forEachRemaining(Spliterators.java:992)
at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509)
at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
at java.base/java.util.stream.ReduceOps$ReduceTask.doLeaf(ReduceOps.java:960)
at java.base/java.util.stream.ReduceOps$ReduceTask.doLeaf(ReduceOps.java:934)
at java.base/java.util.stream.AbstractTask.compute(AbstractTask.java:327)
at java.base/java.util.concurrent.CountedCompleter.exec(CountedCompleter.java:754)
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
[2024-03-03T13:30:57Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:30:57Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/joel071/Main.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "joel071" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:30:57Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/mohsine1999/Main.java"
[2024-03-03T13:30:58Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpnfWmyU/Main.java" with exit code: exit status: 0
[2024-03-03T13:30:58Z INFO blarun] Starting correctness checks
[2024-03-03T13:30:58Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/mohsine1999/Main.java" to "/tmp/.tmp2meugK/Main.java"
[2024-03-03T13:30:58Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:30:59Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmp2meugK/Main.java" with exit code: exit status: 0
[2024-03-03T13:30:59Z DEBUG blarun] The current started process has pid: 137939
[2024-03-03T13:30:59Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 1 out of bounds for length 1
at Main.main(Main.java:49)
[2024-03-03T13:30:59Z INFO blarun] Finished execution of the solution with status: Some(1)
[2024-03-03T13:30:59Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/mohsine1999/Main.java", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "mohsine1999" } with error: Failed to run the solution file: none-zero exit code
[2024-03-03T13:30:59Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/j-mounim/index.js"
[2024-03-03T13:30:59Z INFO blarun] Starting correctness checks
[2024-03-03T13:30:59Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/j-mounim/index.js" to "/tmp/.tmpo5gVEN/main.js"
[2024-03-03T13:30:59Z DEBUG blarun] The current started process has pid: 137963
[2024-03-03T13:30:59Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:00Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:00Z DEBUG blarun] Correctness execution finished in: 590.965715ms
[2024-03-03T13:31:00Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:31:00Z DEBUG blarun] Comparing output "/tmp/.tmpo5gVEN/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:31:00Z INFO blarun] Solution comparison failed, output for the solution is: 0.00
0.00
expected output is Casablanca 45534.98
Zucchini 1.05
Pineapple 1.06
Dill 1.15
Eggplant 1.22
Cantaloupe 1.41
[2024-03-03T13:31:00Z INFO blarun] Solution didn't pass correctness check, aborting early!
[2024-03-03T13:31:00Z INFO blarun] Solution failed correctness checks, exiting early
[2024-03-03T13:31:00Z INFO blarun] Submission from user: j-mounim has finished with verdict: Wa and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:31:00Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/YoussefAdebouz/main.cpp"
/home/maxheap/blanat/submissions/YoussefAdebouz/main.cpp: In function ‘std::string find_cheapest_city(std::map<std::__cxx11::basic_string<char>, City>&)’:
/home/maxheap/blanat/submissions/YoussefAdebouz/main.cpp:46:30: error: ‘numeric_limits’ was not declared in this scope
46 | double min_total_price = numeric_limits<double>::max();
| ^~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/YoussefAdebouz/main.cpp:46:45: error: expected primary-expression before ‘double’
46 | double min_total_price = numeric_limits<double>::max();
| ^~~~~~
[2024-03-03T13:31:00Z INFO blarun] Finished compilation of the target: "/tmp/.tmpp3vgUX/sol" with exit code: exit status: 1
[2024-03-03T13:31:00Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/YoussefAdebouz/main.cpp", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "YoussefAdebouz" } with error: Failed to compile solution file: none-zero exit code
[2024-03-03T13:31:00Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/nizarbenalla/Main.java"
[2024-03-03T13:31:01Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpKl2ODX/Main.java" with exit code: exit status: 0
[2024-03-03T13:31:01Z INFO blarun] Starting correctness checks
[2024-03-03T13:31:01Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/nizarbenalla/Main.java" to "/tmp/.tmpFyfKLs/Main.java"
[2024-03-03T13:31:01Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:31:02Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpFyfKLs/Main.java" with exit code: exit status: 0
[2024-03-03T13:31:02Z DEBUG blarun] The current started process has pid: 138057
[2024-03-03T13:31:02Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:02Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:02Z DEBUG blarun] Correctness execution finished in: 313.653599ms
[2024-03-03T13:31:02Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:31:02Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:31:02Z DEBUG blarun] The current started process has pid: 138097
[2024-03-03T13:31:02Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:02Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:02Z DEBUG blarun] Correctness execution finished in: 286.450038ms
[2024-03-03T13:31:02Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:31:02Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:31:02Z DEBUG blarun] The current started process has pid: 138137
[2024-03-03T13:31:02Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:03Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:03Z DEBUG blarun] Correctness execution finished in: 284.65722ms
[2024-03-03T13:31:03Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/03.in", output: "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:31:03Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:31:03Z DEBUG blarun] The current started process has pid: 138177
[2024-03-03T13:31:03Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:03Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:03Z DEBUG blarun] Correctness execution finished in: 295.242587ms
[2024-03-03T13:31:03Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/04.in", output: "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:31:03Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:31:03Z DEBUG blarun] The current started process has pid: 138217
[2024-03-03T13:31:03Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:03Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:03Z DEBUG blarun] Correctness execution finished in: 310.45571ms
[2024-03-03T13:31:03Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/05.in", output: "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:31:03Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:31:03Z DEBUG blarun] The current started process has pid: 138257
[2024-03-03T13:31:03Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:03Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:03Z DEBUG blarun] Correctness execution finished in: 320.741381ms
[2024-03-03T13:31:03Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/06.in", output: "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:31:03Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:31:03Z DEBUG blarun] The current started process has pid: 138297
[2024-03-03T13:31:04Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:04Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:04Z DEBUG blarun] Correctness execution finished in: 263.891814ms
[2024-03-03T13:31:04Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/07.in", output: "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:31:04Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:31:04Z DEBUG blarun] The current started process has pid: 138337
[2024-03-03T13:31:04Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:04Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:04Z DEBUG blarun] Correctness execution finished in: 252.543124ms
[2024-03-03T13:31:04Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/08.in", output: "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:31:04Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:31:04Z DEBUG blarun] The current started process has pid: 138377
[2024-03-03T13:31:04Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:04Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:04Z DEBUG blarun] Correctness execution finished in: 232.339917ms
[2024-03-03T13:31:04Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/09.in", output: "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:31:04Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:31:04Z DEBUG blarun] The current started process has pid: 138417
[2024-03-03T13:31:04Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:31:05Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:31:05Z DEBUG blarun] Correctness execution finished in: 335.277386ms
[2024-03-03T13:31:05Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/10.in", output: "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:31:05Z DEBUG blarun] Comparing output "/tmp/.tmpFyfKLs/output.txt" vs "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:31:05Z INFO blarun] Solution passed correctness checks
[2024-03-03T13:31:05Z INFO blarun] Dropping the file cache
[2024-03-03T13:31:06Z INFO blarun] Symlinking file from: "/home/maxheap/blablaconf/input.txt" to "/tmp/.tmpKl2ODX/input.txt"
[2024-03-03T13:31:06Z DEBUG blarun] Starting execution run #0
[2024-03-03T13:31:06Z DEBUG blarun] The current started process has pid: 138460
[2024-03-03T13:31:06Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
Exception in thread "pool-1-thread-1" java.lang.OutOfMemoryError: unable to create native thread: possibly out of memory or process/resource limits reached
at java.base/java.lang.Thread.start0(Native Method)
at java.base/java.lang.Thread.start(Thread.java:809)
at java.base/java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:945)
at java.base/java.util.concurrent.ThreadPoolExecutor.processWorkerExit(ThreadPoolExecutor.java:1013)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1150)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:840)
[2024-03-03T13:41:06Z DEBUG blarun] Child process timed out
[2024-03-03T13:41:06Z DEBUG blarun] Killed with exit code: None
[2024-03-03T13:41:06Z INFO blarun] Submission from user: nizarbenalla has finished with verdict: Tle and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:41:06Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/lhousaine/index.js"
[2024-03-03T13:41:06Z INFO blarun] Starting correctness checks
[2024-03-03T13:41:06Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/lhousaine/index.js" to "/tmp/.tmp06EiiJ/main.js"
[2024-03-03T13:41:06Z DEBUG blarun] The current started process has pid: 138580
[2024-03-03T13:41:06Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:07Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:07Z DEBUG blarun] Correctness execution finished in: 573.933074ms
[2024-03-03T13:41:07Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:41:07Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:41:07Z DEBUG blarun] The current started process has pid: 138607
[2024-03-03T13:41:07Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:07Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:07Z DEBUG blarun] Correctness execution finished in: 347.543897ms
[2024-03-03T13:41:07Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:41:07Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:41:07Z DEBUG blarun] The current started process has pid: 138634
[2024-03-03T13:41:07Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:07Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:07Z DEBUG blarun] Correctness execution finished in: 340.256619ms
[2024-03-03T13:41:07Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/03.in", output: "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:41:07Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:41:07Z DEBUG blarun] The current started process has pid: 138661
[2024-03-03T13:41:07Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:08Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:08Z DEBUG blarun] Correctness execution finished in: 349.353704ms
[2024-03-03T13:41:08Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/04.in", output: "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:41:08Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/04.out"
[2024-03-03T13:41:08Z DEBUG blarun] The current started process has pid: 138688
[2024-03-03T13:41:08Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:08Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:08Z DEBUG blarun] Correctness execution finished in: 353.719351ms
[2024-03-03T13:41:08Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/05.in", output: "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:41:08Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/05.out"
[2024-03-03T13:41:08Z DEBUG blarun] The current started process has pid: 138715
[2024-03-03T13:41:08Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:08Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:08Z DEBUG blarun] Correctness execution finished in: 353.057963ms
[2024-03-03T13:41:08Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/06.in", output: "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:41:08Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/06.out"
[2024-03-03T13:41:08Z DEBUG blarun] The current started process has pid: 138742
[2024-03-03T13:41:08Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:09Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:09Z DEBUG blarun] Correctness execution finished in: 351.571533ms
[2024-03-03T13:41:09Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/07.in", output: "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:41:09Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/07.out"
[2024-03-03T13:41:09Z DEBUG blarun] The current started process has pid: 138769
[2024-03-03T13:41:09Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:09Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:09Z DEBUG blarun] Correctness execution finished in: 347.193957ms
[2024-03-03T13:41:09Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/08.in", output: "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:41:09Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/08.out"
[2024-03-03T13:41:09Z DEBUG blarun] The current started process has pid: 138796
[2024-03-03T13:41:09Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:09Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:09Z DEBUG blarun] Correctness execution finished in: 347.198606ms
[2024-03-03T13:41:09Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/09.in", output: "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:41:09Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/09.out"
[2024-03-03T13:41:09Z DEBUG blarun] The current started process has pid: 138823
[2024-03-03T13:41:09Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:41:10Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:41:10Z DEBUG blarun] Correctness execution finished in: 346.156752ms
[2024-03-03T13:41:10Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/10.in", output: "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:41:10Z DEBUG blarun] Comparing output "/tmp/.tmp06EiiJ/output.txt" vs "/home/maxheap/correctness_tests/10.out"
[2024-03-03T13:41:10Z INFO blarun] Solution passed correctness checks
[2024-03-03T13:41:10Z INFO blarun] Symlinking file from: "/home/maxheap/blablaconf/input.txt" to "/tmp/.tmpDYknQq/input.txt"
[2024-03-03T13:41:10Z DEBUG blarun] The current started process has pid: 138850
[2024-03-03T13:41:10Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:42:59Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:42:59Z DEBUG blarun] Execution #0 finished in: 108.750577489s
[2024-03-03T13:42:59Z DEBUG blarun] Comparing output "/tmp/.tmpDYknQq/output.txt" vs "/home/maxheap/blablaconf/output.txt"
[2024-03-03T13:42:59Z DEBUG blarun] The current started process has pid: 138877
[2024-03-03T13:42:59Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:44:50Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:44:50Z DEBUG blarun] Execution #1 finished in: 111.862966543s
[2024-03-03T13:44:50Z DEBUG blarun] Comparing output "/tmp/.tmpDYknQq/output.txt" vs "/home/maxheap/blablaconf/output.txt"
[2024-03-03T13:44:50Z DEBUG blarun] The current started process has pid: 138910
[2024-03-03T13:44:50Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:46:38Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:46:38Z DEBUG blarun] Execution #2 finished in: 108.034604905s
[2024-03-03T13:46:38Z DEBUG blarun] Comparing output "/tmp/.tmpDYknQq/output.txt" vs "/home/maxheap/blablaconf/output.txt"
[2024-03-03T13:46:38Z DEBUG blarun] The current started process has pid: 138944
[2024-03-03T13:46:38Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:48:29Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:48:29Z DEBUG blarun] Execution #3 finished in: 110.473460415s
[2024-03-03T13:48:29Z DEBUG blarun] Comparing output "/tmp/.tmpDYknQq/output.txt" vs "/home/maxheap/blablaconf/output.txt"
[2024-03-03T13:48:29Z DEBUG blarun] The current started process has pid: 138971
[2024-03-03T13:48:29Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:18Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:18Z DEBUG blarun] Execution #4 finished in: 109.066386412s
[2024-03-03T13:50:18Z DEBUG blarun] Comparing output "/tmp/.tmpDYknQq/output.txt" vs "/home/maxheap/blablaconf/output.txt"
[2024-03-03T13:50:18Z INFO blarun] Submission from user: lhousaine has finished with verdict: Ac and with an AVG execution time of: 109.430141438s and MED of 109.066386412s
[2024-03-03T13:50:18Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/yabad-codes/main.c"
/home/maxheap/blanat/submissions/yabad-codes/main.c: In function ‘void insert(hashMap*, const char*, const char*, double)’:
/home/maxheap/blanat/submissions/yabad-codes/main.c:134:30: error: expected unqualified-id before ‘new’
134 | productPair *new = (productPair *)malloc(sizeof(productPair));
| ^~~
/home/maxheap/blanat/submissions/yabad-codes/main.c:135:20: error: expected type-specifier before ‘->’ token
135 | new->price = price;
| ^~
/home/maxheap/blanat/submissions/yabad-codes/main.c:136:20: error: expected type-specifier before ‘->’ token
136 | new->product = strdup(product);
| ^~
/home/maxheap/blanat/submissions/yabad-codes/main.c:137:58: error: expected type-specifier before ‘;’ token
137 | node->products[node->product_count] = new;
| ^
/home/maxheap/blanat/submissions/yabad-codes/main.c: In function ‘int main()’:
/home/maxheap/blanat/submissions/yabad-codes/main.c:323:62: error: expected unqualified-id before ‘new’
323 | productPair *new = (productPair *)malloc(sizeof(productPair));
| ^~~
/home/maxheap/blanat/submissions/yabad-codes/main.c:324:52: error: expected type-specifier before ‘->’ token
324 | new->price = node->products[k]->price;
| ^~
/home/maxheap/blanat/submissions/yabad-codes/main.c:325:52: error: expected type-specifier before ‘->’ token
325 | new->product = strdup(node->products[k]->product);
| ^~
/home/maxheap/blanat/submissions/yabad-codes/main.c:326:96: error: expected type-specifier before ‘;’ token
326 | current->products[current->product_count] = new;
| ^
[2024-03-03T13:50:18Z INFO blarun] Finished compilation of the target: "/tmp/.tmpBjPrxj/sol" with exit code: exit status: 1
[2024-03-03T13:50:18Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/yabad-codes/main.c", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "yabad-codes" } with error: Failed to compile solution file: none-zero exit code
[2024-03-03T13:50:18Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/aarrasseayoub01/solution.rs"
[2024-03-03T13:50:18Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/aarrasseayoub01/solution.rs", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "aarrasseayoub01" } with error: No such file or directory (os error 2)
[2024-03-03T13:50:18Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/ibrataha8/main.cpp"
[2024-03-03T13:50:20Z INFO blarun] Finished compilation of the target: "/tmp/.tmpUwLMgW/sol" with exit code: exit status: 0
[2024-03-03T13:50:20Z INFO blarun] Starting correctness checks
[2024-03-03T13:50:20Z DEBUG blarun] The current started process has pid: 139007
[2024-03-03T13:50:20Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:20Z INFO blarun] Finished execution of the solution with status: None
[2024-03-03T13:50:20Z DEBUG blarun] Correctness execution finished in: 71.513677ms
[2024-03-03T13:50:20Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:20Z DEBUG blarun] Comparing output "/tmp/.tmp3nUt9Q/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:20Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/ibrataha8/main.cpp", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "ibrataha8" } with error: No such file or directory (os error 2)
[2024-03-03T13:50:20Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/ttlgeek/Main.java"
[2024-03-03T13:50:22Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpfLzUYd/Main.java" with exit code: exit status: 0
[2024-03-03T13:50:22Z INFO blarun] Starting correctness checks
[2024-03-03T13:50:22Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/ttlgeek/Main.java" to "/tmp/.tmpA5PEWh/Main.java"
[2024-03-03T13:50:22Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:50:22Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpA5PEWh/Main.java" with exit code: exit status: 0
[2024-03-03T13:50:22Z DEBUG blarun] The current started process has pid: 139097
[2024-03-03T13:50:22Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:23Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:23Z DEBUG blarun] Correctness execution finished in: 232.51389ms
[2024-03-03T13:50:23Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:23Z DEBUG blarun] Comparing output "/tmp/.tmpA5PEWh/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:23Z INFO blarun] Solution comparison failed, output for the solution is: Al_Hoceima 46691.12
Chard 1.00
Kiwi 1.00
Acorn_Squash 1.01
Artichoke 1.01
Grapefruit 1.01
expected output is Casablanca 45534.98
Zucchini 1.05
Pineapple 1.06
Dill 1.15
Eggplant 1.22
Cantaloupe 1.41
[2024-03-03T13:50:23Z INFO blarun] Solution didn't pass correctness check, aborting early!
[2024-03-03T13:50:23Z INFO blarun] Solution failed correctness checks, exiting early
[2024-03-03T13:50:23Z INFO blarun] Submission from user: ttlgeek has finished with verdict: Wa and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:50:23Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/hamzanaciri99/Main.java"
[2024-03-03T13:50:23Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpY9Xvxk/Main.java" with exit code: exit status: 0
[2024-03-03T13:50:23Z INFO blarun] Starting correctness checks
[2024-03-03T13:50:23Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/hamzanaciri99/Main.java" to "/tmp/.tmpI3bta0/Main.java"
[2024-03-03T13:50:23Z DEBUG blarun] Recompiling Java solution for correctness checks
[2024-03-03T13:50:24Z DEBUG blarun] Finished compilation of the target: "/tmp/.tmpI3bta0/Main.java" with exit code: exit status: 0
[2024-03-03T13:50:24Z DEBUG blarun] The current started process has pid: 139188
[2024-03-03T13:50:24Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:24Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:24Z DEBUG blarun] Correctness execution finished in: 366.036367ms
[2024-03-03T13:50:24Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:24Z DEBUG blarun] Comparing output "/tmp/.tmpI3bta0/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:24Z DEBUG blarun] The current started process has pid: 139242
[2024-03-03T13:50:24Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:25Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:25Z DEBUG blarun] Correctness execution finished in: 366.808861ms
[2024-03-03T13:50:25Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/02.in", output: "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:50:25Z DEBUG blarun] Comparing output "/tmp/.tmpI3bta0/output.txt" vs "/home/maxheap/correctness_tests/02.out"
[2024-03-03T13:50:25Z DEBUG blarun] The current started process has pid: 139296
[2024-03-03T13:50:25Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:25Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:25Z DEBUG blarun] Correctness execution finished in: 346.824206ms
[2024-03-03T13:50:25Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/03.in", output: "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:50:25Z DEBUG blarun] Comparing output "/tmp/.tmpI3bta0/output.txt" vs "/home/maxheap/correctness_tests/03.out"
[2024-03-03T13:50:25Z INFO blarun] Solution comparison failed, output for the solution is: El_Jadida 45848.19
Acorn_Squash 1.03
Sweet_Potato 1.35
Cactus_Pear 1.47
Nectarine 1.49
Watercress 1.49
expected output is El_Jadida 45848.19
Acorn_Squash 1.03
Eggplant 1.14
Sweet_Potato 1.35
Cactus_Pear 1.47
Nectarine 1.49
[2024-03-03T13:50:25Z INFO blarun] Solution didn't pass correctness check, aborting early!
[2024-03-03T13:50:25Z INFO blarun] Solution failed correctness checks, exiting early
[2024-03-03T13:50:25Z INFO blarun] Submission from user: hamzanaciri99 has finished with verdict: Wa and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:50:25Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/essmehdi/solution.rs"
[2024-03-03T13:50:25Z INFO blarun] Failed to run RunContext { input_file: "/home/maxheap/blablaconf/input.txt", expected_output: "/home/maxheap/blablaconf/output.txt", solution_file: "/home/maxheap/blanat/submissions/essmehdi/solution.rs", correctness_data: "/home/maxheap/correctness_tests", timeout: 600s, cgroup_path: "/sys/fs/cgroup/blarun.workload", times: 5, root: "/home/maxheap/blanat/", user: "essmehdi" } with error: No such file or directory (os error 2)
[2024-03-03T13:50:25Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/same-ou/solution.py"
[2024-03-03T13:50:25Z INFO blarun] Starting correctness checks
[2024-03-03T13:50:25Z DEBUG blarun] Copying solution source from: "/home/maxheap/blanat/submissions/same-ou/solution.py" to "/tmp/.tmpQuWtve/main.py"
[2024-03-03T13:50:25Z DEBUG blarun] The current started process has pid: 139351
[2024-03-03T13:50:25Z DEBUG blarun] Moved process to cgroup /sys/fs/cgroup/blarun.workload successfully
[2024-03-03T13:50:25Z INFO blarun] Finished execution of the solution with status: Some(0)
[2024-03-03T13:50:25Z DEBUG blarun] Correctness execution finished in: 181.054348ms
[2024-03-03T13:50:25Z DEBUG blarun] Found matching output_file: input: "/home/maxheap/correctness_tests/01.in", output: "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:25Z DEBUG blarun] Comparing output "/tmp/.tmpQuWtve/output.txt" vs "/home/maxheap/correctness_tests/01.out"
[2024-03-03T13:50:25Z INFO blarun] Solution comparison failed, output for the solution is: Casablanca 45536.13
Zucchini 1.05
Pineapple 1.06
Dill 1.15
Eggplant 1.22
Cantaloupe 1.41
expected output is Casablanca 45534.98
Zucchini 1.05
Pineapple 1.06
Dill 1.15
Eggplant 1.22
Cantaloupe 1.41
[2024-03-03T13:50:25Z INFO blarun] Solution didn't pass correctness check, aborting early!
[2024-03-03T13:50:25Z INFO blarun] Solution failed correctness checks, exiting early
[2024-03-03T13:50:25Z INFO blarun] Submission from user: same-ou has finished with verdict: Wa and with an AVG execution time of: 0ns and MED of 0ns
[2024-03-03T13:50:25Z DEBUG blarun] Changed path: "/home/maxheap/blanat/submissions/lmongol/main.c"
/home/maxheap/blanat/submissions/lmongol/main.c:26:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
26 | "Apple", "Banana", "Orange", "Strawberry", "Grapes",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:26:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
26 | "Apple", "Banana", "Orange", "Strawberry", "Grapes",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:26:24: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
26 | "Apple", "Banana", "Orange", "Strawberry", "Grapes",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:26:34: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
26 | "Apple", "Banana", "Orange", "Strawberry", "Grapes",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:26:48: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
26 | "Apple", "Banana", "Orange", "Strawberry", "Grapes",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:27:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
27 | "Watermelon", "Pineapple", "Mango", "Kiwi", "Peach",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:27:19: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
27 | "Watermelon", "Pineapple", "Mango", "Kiwi", "Peach",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:27:32: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
27 | "Watermelon", "Pineapple", "Mango", "Kiwi", "Peach",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:27:41: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
27 | "Watermelon", "Pineapple", "Mango", "Kiwi", "Peach",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:27:49: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
27 | "Watermelon", "Pineapple", "Mango", "Kiwi", "Peach",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:28:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
28 | "Plum", "Cherry", "Pear", "Blueberry", "Raspberry",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:28:13: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
28 | "Plum", "Cherry", "Pear", "Blueberry", "Raspberry",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:28:23: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
28 | "Plum", "Cherry", "Pear", "Blueberry", "Raspberry",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:28:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
28 | "Plum", "Cherry", "Pear", "Blueberry", "Raspberry",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:28:44: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
28 | "Plum", "Cherry", "Pear", "Blueberry", "Raspberry",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:29:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
29 | "Blackberry", "Cantaloupe", "Honeydew", "Coconut", "Pomegranate",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:29:19: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
29 | "Blackberry", "Cantaloupe", "Honeydew", "Coconut", "Pomegranate",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:29:33: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
29 | "Blackberry", "Cantaloupe", "Honeydew", "Coconut", "Pomegranate",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:29:45: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
29 | "Blackberry", "Cantaloupe", "Honeydew", "Coconut", "Pomegranate",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:29:56: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
29 | "Blackberry", "Cantaloupe", "Honeydew", "Coconut", "Pomegranate",
| ^~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:30:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
30 | "Lemon", "Lime", "Grapefruit", "Avocado", "Papaya",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:30:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
30 | "Lemon", "Lime", "Grapefruit", "Avocado", "Papaya",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:30:22: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
30 | "Lemon", "Lime", "Grapefruit", "Avocado", "Papaya",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:30:36: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
30 | "Lemon", "Lime", "Grapefruit", "Avocado", "Papaya",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:30:47: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
30 | "Lemon", "Lime", "Grapefruit", "Avocado", "Papaya",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:31:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
31 | "Guava", "Fig", "Passion_Fruit", "Apricot", "Nectarine",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:31:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
31 | "Guava", "Fig", "Passion_Fruit", "Apricot", "Nectarine",
| ^~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:31:21: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
31 | "Guava", "Fig", "Passion_Fruit", "Apricot", "Nectarine",
| ^~~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:31:38: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
31 | "Guava", "Fig", "Passion_Fruit", "Apricot", "Nectarine",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:31:49: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
31 | "Guava", "Fig", "Passion_Fruit", "Apricot", "Nectarine",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:32:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
32 | "Cucumber", "Carrot", "Broccoli", "Spinach", "Kale",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:32:17: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
32 | "Cucumber", "Carrot", "Broccoli", "Spinach", "Kale",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:32:27: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
32 | "Cucumber", "Carrot", "Broccoli", "Spinach", "Kale",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:32:39: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
32 | "Cucumber", "Carrot", "Broccoli", "Spinach", "Kale",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:32:50: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
32 | "Cucumber", "Carrot", "Broccoli", "Spinach", "Kale",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:33:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
33 | "Lettuce", "Tomato", "Bell_Pepper", "Zucchini", "Eggplant",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:33:16: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
33 | "Lettuce", "Tomato", "Bell_Pepper", "Zucchini", "Eggplant",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:33:26: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
33 | "Lettuce", "Tomato", "Bell_Pepper", "Zucchini", "Eggplant",
| ^~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:33:41: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
33 | "Lettuce", "Tomato", "Bell_Pepper", "Zucchini", "Eggplant",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:33:53: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
33 | "Lettuce", "Tomato", "Bell_Pepper", "Zucchini", "Eggplant",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:34:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
34 | "Cabbage", "Cauliflower", "Brussels_Sprouts", "Radish", "Beet",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:34:16: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
34 | "Cabbage", "Cauliflower", "Brussels_Sprouts", "Radish", "Beet",
| ^~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:34:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
34 | "Cabbage", "Cauliflower", "Brussels_Sprouts", "Radish", "Beet",
| ^~~~~~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:34:51: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
34 | "Cabbage", "Cauliflower", "Brussels_Sprouts", "Radish", "Beet",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:34:61: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
34 | "Cabbage", "Cauliflower", "Brussels_Sprouts", "Radish", "Beet",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:35:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
35 | "Asparagus", "Artichoke", "Green_Beans", "Peas", "Celery",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:35:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
35 | "Asparagus", "Artichoke", "Green_Beans", "Peas", "Celery",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:35:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
35 | "Asparagus", "Artichoke", "Green_Beans", "Peas", "Celery",
| ^~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:35:46: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
35 | "Asparagus", "Artichoke", "Green_Beans", "Peas", "Celery",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:35:54: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
35 | "Asparagus", "Artichoke", "Green_Beans", "Peas", "Celery",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:36:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
36 | "Onion", "Garlic", "Potato", "Sweet_Potato", "Yam",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:36:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
36 | "Onion", "Garlic", "Potato", "Sweet_Potato", "Yam",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:36:24: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
36 | "Onion", "Garlic", "Potato", "Sweet_Potato", "Yam",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:36:34: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
36 | "Onion", "Garlic", "Potato", "Sweet_Potato", "Yam",
| ^~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:36:50: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
36 | "Onion", "Garlic", "Potato", "Sweet_Potato", "Yam",
| ^~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:37:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
37 | "Butternut_Squash", "Acorn_Squash", "Pumpkin", "Cranberry", "Goji_Berry",
| ^~~~~~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:37:25: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
37 | "Butternut_Squash", "Acorn_Squash", "Pumpkin", "Cranberry", "Goji_Berry",
| ^~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:37:41: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
37 | "Butternut_Squash", "Acorn_Squash", "Pumpkin", "Cranberry", "Goji_Berry",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:37:52: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
37 | "Butternut_Squash", "Acorn_Squash", "Pumpkin", "Cranberry", "Goji_Berry",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:37:65: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
37 | "Butternut_Squash", "Acorn_Squash", "Pumpkin", "Cranberry", "Goji_Berry",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:38:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
38 | "Currant", "Date", "Clementine", "Cranberry", "Rhubarb",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:38:16: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
38 | "Currant", "Date", "Clementine", "Cranberry", "Rhubarb",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:38:24: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
38 | "Currant", "Date", "Clementine", "Cranberry", "Rhubarb",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:38:38: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
38 | "Currant", "Date", "Clementine", "Cranberry", "Rhubarb",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:38:51: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
38 | "Currant", "Date", "Clementine", "Cranberry", "Rhubarb",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:39:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
39 | "Chard", "Collard_Greens", "Parsley", "Cilantro", "Mint",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:39:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
39 | "Chard", "Collard_Greens", "Parsley", "Cilantro", "Mint",
| ^~~~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:39:32: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
39 | "Chard", "Collard_Greens", "Parsley", "Cilantro", "Mint",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:39:43: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
39 | "Chard", "Collard_Greens", "Parsley", "Cilantro", "Mint",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:39:55: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
39 | "Chard", "Collard_Greens", "Parsley", "Cilantro", "Mint",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:14: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:23: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:35: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:43: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:40:51: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
40 | "Basil", "Thyme", "Rosemary", "Sage", "Dill", "Oregano",
| ^~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:41:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
41 | "Jackfruit", "Starfruit", "Persimmon", "Ginger", "Turnip",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:41:18: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
41 | "Jackfruit", "Starfruit", "Persimmon", "Ginger", "Turnip",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:41:31: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
41 | "Jackfruit", "Starfruit", "Persimmon", "Ginger", "Turnip",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:41:44: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
41 | "Jackfruit", "Starfruit", "Persimmon", "Ginger", "Turnip",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:41:54: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
41 | "Jackfruit", "Starfruit", "Persimmon", "Ginger", "Turnip",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:42:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
42 | "Jicama", "Kohlrabi", "Watercress", "Okra", "Artichoke",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:42:15: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
42 | "Jicama", "Kohlrabi", "Watercress", "Okra", "Artichoke",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:42:27: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
42 | "Jicama", "Kohlrabi", "Watercress", "Okra", "Artichoke",
| ^~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:42:41: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
42 | "Jicama", "Kohlrabi", "Watercress", "Okra", "Artichoke",
| ^~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:42:49: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
42 | "Jicama", "Kohlrabi", "Watercress", "Okra", "Artichoke",
| ^~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:43:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
43 | "Plantain", "Cactus_Pear", "Kiwano", "Squash_Blossom", "Dragon_Fruit",
| ^~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:43:17: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
43 | "Plantain", "Cactus_Pear", "Kiwano", "Squash_Blossom", "Dragon_Fruit",
| ^~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:43:32: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
43 | "Plantain", "Cactus_Pear", "Kiwano", "Squash_Blossom", "Dragon_Fruit",
| ^~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:43:42: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
43 | "Plantain", "Cactus_Pear", "Kiwano", "Squash_Blossom", "Dragon_Fruit",
| ^~~~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:43:60: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
43 | "Plantain", "Cactus_Pear", "Kiwano", "Squash_Blossom", "Dragon_Fruit",
| ^~~~~~~~~~~~~~
/home/maxheap/blanat/submissions/lmongol/main.c:44:5: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
44 | "Parsnip", "Rutabaga", "Salsify", "Bok_Choy", "Endive"
| ^~~~~~~~~