-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhatsApp Chat with ICPC.txt
4735 lines (4609 loc) · 228 KB
/
WhatsApp Chat with ICPC.txt
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
8/20/22, 9:21 PM - Messages and calls are end-to-end encrypted. No one outside of this chat, not even WhatsApp, can read or listen to them. Tap to learn more.
8/20/22, 9:21 PM - Harshil B created group "Icpc"
8/20/22, 9:21 PM - Harshil B added you
8/20/22, 9:21 PM - Harshil B: Bhaio icpc pr jaake register krdo simple bss
8/20/22, 9:21 PM - Harshil B: Login id bnalo
8/20/22, 9:21 PM - Harshil B: Mai add krha hu
8/20/22, 9:31 PM - Harshil B: Team name btao giys
8/20/22, 9:32 PM - Harshit USICT: noob coders
8/20/22, 9:32 PM - Harshit USICT: 😂
8/20/22, 9:32 PM - Harshil B: <Media omitted>
8/20/22, 9:32 PM - Harshit USICT: vishal agya
8/20/22, 9:32 PM - Harshit USICT: vmro team name bata sexy sa
8/20/22, 9:32 PM - Vishal Verma: Ab to sach bolde bs**
8/20/22, 9:33 PM - Harshil B: HVH Coders?
8/20/22, 9:33 PM - Harshil B: Teeno ke initial hogye
8/20/22, 9:33 PM - Harshit USICT: HIV kerde 😂
8/20/22, 9:33 PM - Vishal Verma: Vh2 ya h2v kesa h
8/20/22, 9:33 PM - Harshil B: Bahar nikaldenge 😂
8/20/22, 9:33 PM - Harshil B: Ye bhi theek h
8/20/22, 9:34 PM - Vishal Verma: Ruko or thoda time do
8/20/22, 9:34 PM - Harshit USICT: haa
8/20/22, 9:34 PM - Harshil B: Tu register krle pehle
8/20/22, 9:34 PM - Harshil B: Fir sochte h
8/20/22, 9:34 PM - Harshit USICT: bhai mere mai phele se university likha aya institute name mai
8/20/22, 9:34 PM - Harshit USICT: profile check ki
8/20/22, 9:34 PM - Harshil B: 🫡🫡
8/20/22, 9:35 PM - Harshit USICT: <Media omitted>
8/20/22, 9:45 PM - Vishal Verma: Institute not found dikha rha h
8/20/22, 9:46 PM - Harshil B: USICT
Poora full form mei likh
8/20/22, 9:46 PM - Harshil B: University school krke
8/20/22, 9:47 PM - Vishal Verma: <Media omitted>
8/20/22, 9:47 PM - Harshil B: Yahi likhde
8/20/22, 9:47 PM - Harshil B: Ya khaali chodd de
8/20/22, 9:48 PM - Harshil B: Apne aap ajaega ig
8/20/22, 9:48 PM - Harshil B: Harshit ka bhi agya tha
8/20/22, 9:49 PM - Vishal Verma: Kr diya
8/20/22, 9:49 PM - Vishal Verma: Bnalo team
8/20/22, 9:49 PM - Harshit USICT: <Media omitted>
8/20/22, 9:49 PM - Harshil B: Name socho
8/20/22, 9:50 PM - Harshit USICT: hash coders ?
8/20/22, 9:50 PM - Harshil B: Heavy coders
8/20/22, 9:50 PM - Harshit USICT: op
8/20/22, 9:51 PM - Harshit USICT: dalle ko daal fir isme to
8/20/22, 9:51 PM - Harshil B: Developer hai vo toh heavy vala
8/20/22, 9:51 PM - Harshit USICT: haa bc hume se sabse heavy vahi hai
8/20/22, 9:54 PM - Harshil B: Cyber commandos
8/20/22, 9:55 PM - Harshil B: Kaisa h
8/20/22, 10:01 PM - Harshit USICT: thoda jyda heavy hogya
8/20/22, 10:01 PM - Harshil B: Ab krdiya final maine
8/20/22, 10:05 PM - Harshil B: Bhaiyo apni profile jaake complete krlena
8/20/22, 10:05 PM - Harshil B: Saari details A to Z bhardo
8/20/22, 10:11 PM - Vishal Verma: Bhai aukat se zyada ho gya
8/20/22, 10:11 PM - Harshil B: Aree system faad denge 😂
8/20/22, 10:11 PM - Vishal Verma: <Media omitted>
8/20/22, 10:12 PM - Harshil B: 🫡😂😂
8/20/22, 10:12 PM - Harshit USICT: haa
8/20/22, 10:12 PM - Harshit USICT: heavy hai jyda
8/20/22, 10:13 PM - Harshit USICT: Object Orientors bata kesa hai ?
8/20/22, 10:44 PM - Vishal Verma: Codreamers
Codetubers
TrueOOPs
BugBreakers
8/20/22, 10:44 PM - Vishal Verma: Koi smjh aye to batana
8/20/22, 11:10 PM - Vishal Verma: Iski regs. Fees hme deni h ya coach ko?
8/20/22, 11:10 PM - Harshil B: Hum hi denge
8/20/22, 11:11 PM - Harshil B: Baaki shyd round 1 mei nhi hotii koi fees online hai kyunki
8/20/22, 11:11 PM - Harshil B: But hogi toh btadunga
8/20/22, 11:11 PM - Vishal Verma: 1000 rp h bro
8/20/22, 11:11 PM - Harshil B: Team ki?
8/20/22, 11:11 PM - Harshit USICT: Iski maa ka
8/20/22, 11:11 PM - Harshit USICT: ++
8/20/22, 11:12 PM - Vishal Verma: <Media omitted>
8/20/22, 11:12 PM - Vishal Verma: Ha
8/20/22, 11:13 PM - Harshil B: Ye sb btaya toh nhi pehle 😂
8/20/22, 11:13 PM - Harshit USICT: Haa or kya 😂
8/20/22, 11:13 PM - Harshit USICT: Free vala dund bro 😂
8/20/22, 11:13 PM - Vishal Verma: Koi ni dekh lenge
8/20/22, 11:13 PM - Harshil B: Bhai ye world ka top ka competition hai
Kuch toh rokda lenge hi 😂
8/20/22, 11:13 PM - Harshit USICT: Haa lagane hi padenge isme 😂☠️
8/20/22, 11:14 PM - Harshil B: World tk jaenge first time mei hi 😂
8/20/22, 11:14 PM - Harshit USICT: <Media omitted>
8/20/22, 11:14 PM - Vishal Verma: http://kanpur.indiaicpc.in/?page_id=64
8/20/22, 11:14 PM - Vishal Verma: ye site dekho
8/20/22, 11:14 PM - Vishal Verma: or ye reena gupta se baat kro
8/20/22, 11:15 PM - Harshil B: Senior se poocha hai
8/20/22, 11:15 PM - Harshil B: Vo btarhe h confirm
8/20/22, 11:16 PM - Vishal Verma: kya confirm?
8/20/22, 11:16 PM - Harshil B: Fees deni h ya nhi
8/20/22, 11:16 PM - Harshit USICT: Haa bata fir jo reply de
8/20/22, 11:19 PM - Vishal Verma: <Media omitted>
8/20/22, 11:19 PM - Harshit USICT: Saste nashe
8/20/22, 11:19 PM - Harshil B: Regions ka scene hoga kuch ig
Country ke hisaab se hoga
8/20/22, 11:20 PM - Vishal Verma: saale kanpur jana pdega
8/20/22, 11:21 PM - Vishal Verma: Preliminary nikl gya to
8/20/22, 11:21 PM - Harshil B: Online toh qualify krko pehle 😂😂
8/20/22, 11:21 PM - Vishal Verma: 🤞
8/20/22, 11:21 PM - Harshil B: Agr hogya toh bhai Starbucks mei party hai pakki 😂
8/20/22, 11:21 PM - Harshil B: Andhi party hogi 😂
8/20/22, 11:23 PM - Vishal Verma: 6 me esa kya kru jisse help ho jae
8/20/22, 11:24 PM - Vishal Verma: 6 din*
8/20/22, 11:25 PM - Vishal Verma: DSA ni kra abhi mene
8/20/22, 11:25 PM - Vishal Verma: Bs lang. kri h
8/20/22, 11:26 PM - Harshil B: C++ ke syntax hi dekhle ache se
8/20/22, 11:26 PM - Harshil B: Dsa toh kisi ne nhi kra
8/20/22, 11:28 PM - Vishal Verma: Thik h
8/20/22, 11:32 PM - Harshit USICT: ++
8/20/22, 11:32 PM - Harshit USICT: Dsa nhi ata bhai cpp fir bhi ho jayegi
8/20/22, 11:33 PM - Harshit USICT: Java c cpp koi bhi rakhlo
8/20/22, 11:33 PM - Harshil B: Aree sbme code likhdenge 😂
8/20/22, 11:33 PM - Harshit USICT: <Media omitted>
8/20/22, 11:33 PM - Harshit USICT: Mai java mai fir 😂
8/20/22, 11:34 PM - Harshit USICT: Dekhte hi gand faat jayegi bnde ki 😂
8/20/22, 11:34 PM - Vishal Verma: Meri ftegi sbse pehle
8/20/22, 11:35 PM - Vishal Verma: ik C/C++ only
8/20/22, 11:35 PM - Harshil B: 😂😂😂😂
8/20/22, 11:35 PM - Harshit USICT: Naa tu to bhai hai 😀
8/20/22, 11:35 PM - Vishal Verma: 😂
8/20/22, 11:36 PM - Vishal Verma: Harshil Bhai tune Backend start krdi?
8/20/22, 11:36 PM - Harshil B: Nhi bhai
8/20/22, 11:36 PM - Harshil B: Frontend hi nhi hui abhi
8/20/22, 11:36 PM - Vishal Verma: <Media omitted>
8/20/22, 11:36 PM - Vishal Verma: Start kr bhai
8/20/22, 11:36 PM - Harshil B: <Media omitted>
8/20/22, 11:37 PM - Vishal Verma: JS pe atka h kya?
8/20/22, 11:37 PM - Harshit USICT: Webd kara kya tu bhi
8/20/22, 11:37 PM - Harshil B: Abhi chodd rkhi h webd
8/20/22, 11:37 PM - Harshit USICT: Ary sry vishal se puchra tha
8/20/22, 11:37 PM - Vishal Verma: To kya chl rha h?
8/20/22, 11:38 PM - Harshit USICT: Tu bta ?
8/20/22, 11:38 PM - Vishal Verma: Ha bhai aaj hi grid layouts pd rha tha
8/20/22, 11:39 PM - Vishal Verma: Ye dalla ni batega 4th yr tk
8/20/22, 11:39 PM - Harshil B: 😂😂
8/20/22, 11:39 PM - Harshil B: Bhai c++ krha tha
Topics reh gye the usme thode krne
8/20/22, 11:39 PM - Harshit USICT: Ye bhai sab karke betha hai ☠️
8/20/22, 11:39 PM - Harshit USICT: 🌝🌝
8/20/22, 11:40 PM - Vishal Verma: Bhai kuch content bhej diya kro
8/20/22, 11:40 PM - Vishal Verma: Programming se relatd
8/20/22, 11:40 PM - Vishal Verma: Bakchodi to krte hi rehte h
8/20/22, 11:40 PM - Harshil B: Pornhub chlega?
8/20/22, 11:40 PM - Harshil B: Achaa
8/20/22, 11:40 PM - Harshit USICT: 🥲🫂
8/20/22, 11:40 PM - Vishal Verma: <Media omitted>
8/20/22, 11:41 PM - Vishal Verma: <Media omitted>
8/20/22, 11:41 PM - Harshit USICT: https://www.codezclub.com/cpp-solved-programs-problems-solutions/
8/20/22, 11:41 PM - Harshil B: Zindagi toh chlti rahegi
Backchodi nhi kroge toh kya faeda
8/20/22, 11:41 PM - Harshit USICT: Iss site mai hai programs
8/20/22, 11:41 PM - Vishal Verma: Bs bakchodi me zindagi na chli jae💀
8/20/22, 11:41 PM - Harshit USICT: Sari languages ke
8/20/22, 11:41 PM - Harshil B: 😂😂
8/20/22, 11:42 PM - Harshit USICT: <Media omitted>
8/20/22, 11:43 PM - Harshil B: Seh lenge thoda
8/20/22, 11:43 PM - Harshit USICT: @919268064870 isko add kerlio chrome page per
8/20/22, 11:43 PM - Harshit USICT: Ques update hote h isme
8/20/22, 11:43 PM - Harshit USICT: 🥲☠️
8/20/22, 11:43 PM - Vishal Verma: Ha bookmark kr liya
8/22/22, 11:17 AM - Harshil B: Guys payment krni padegi
8/22/22, 11:18 AM - Harshil B: Kya plan h krni h ya nhi
8/22/22, 11:20 AM - Vishal Verma: Coach se baat ho gyi?
8/22/22, 11:20 AM - Harshil B: Coach se kya baat krni h
8/22/22, 11:21 AM - Harshil B: Coach ki id se team bhi maine hi bnai thi 😂
8/22/22, 11:29 AM - Vishal Verma: Kr dete h fir payment
8/22/22, 11:29 AM - Harshil B: <Media omitted>
8/22/22, 11:29 AM - Vishal Verma: @918595977648 aap bhi kuch bolo
8/22/22, 12:30 PM - Harshit USICT: Haa bro bata
8/22/22, 12:31 PM - Harshit USICT: Bhai or kuch to fill nhi kerna form mai sab ho gya tha na complete
8/22/22, 12:32 PM - Harshit USICT: This message was deleted
8/22/22, 3:04 PM - Vishal Verma: Payment batao fir kitni deni h
8/22/22, 8:45 PM - Harshil B: Bhaiyo payment ka method pta chlgya hai
8/22/22, 8:45 PM - Harshil B: http://kanpur.indiaicpc.in/?page_id=64
After registering you need to complete billing for your team
8/22/22, 8:45 PM - Harshil B: Iss site pr jo bank details hai
8/22/22, 8:45 PM - Harshil B: Uspe payment krni hai
8/22/22, 8:45 PM - Harshil B: Koi alag se link nhi hai
8/22/22, 8:45 PM - Harshil B: Payment krne ke baad
8/22/22, 8:45 PM - Harshil B: Slip ka for proof ss lena h
8/22/22, 8:45 PM - Harshil B: Guys payment close hogyi hai
8/22/22, 8:46 PM - Harshil B: Sojao
8/22/22, 8:46 PM - Harshil B: Next year milte hai
8/22/22, 8:55 PM - Vishal Verma: That was lot of information in 1 min.
8/22/22, 8:56 PM - Vishal Verma: ☠️
8/22/22, 8:56 PM - Vishal Verma: <Media omitted>
8/22/22, 8:56 PM - Harshil B: Wifi nhi arha🥲🥸
8/22/22, 8:58 PM - Vishal Verma: null
8/22/22, 8:59 PM - Vishal Verma: Sed life
8/22/22, 8:59 PM - Harshil B: Ye kya hua 😂
8/22/22, 8:59 PM - Harshil B: Rated contest nhi h?
8/22/22, 8:59 PM - Vishal Verma: Kl poori class ki profiles check kr daali codechef pe
8/22/22, 8:59 PM - Vishal Verma: Rated h
8/22/22, 9:00 PM - Harshil B: Toh sed life kya hua
8/22/22, 9:00 PM - Vishal Verma: .
8/22/22, 9:00 PM - Vishal Verma: Talking about u
8/22/22, 9:00 PM - Vishal Verma: 🌝
8/22/22, 9:00 PM - Harshil B: Achaa 🫣
8/22/22, 9:00 PM - Vishal Verma: 🤣🤣
8/22/22, 9:00 PM - Harshil B: <Media omitted>
8/22/22, 9:01 PM - Vishal Verma: Apni class me sbse aage aeron chl rha h
8/22/22, 9:01 PM - Vishal Verma: Codechef pe
8/22/22, 9:01 PM - Vishal Verma: 2⭐
8/22/22, 9:02 PM - Harshil B: Mere bhi the
Id hack hogyi fir meri💀💀
8/22/22, 9:02 PM - Harshil B: Zindagi mei lode lge hue h bss
8/22/22, 9:02 PM - Harshil B: Nai id bnai thi
8/22/22, 9:02 PM - Vishal Verma: Hain 😳
8/22/22, 9:02 PM - Vishal Verma: Ye bhi hack ho jati h
8/22/22, 9:02 PM - Harshil B: Pta nhi bc
Meri id se koi contest derha tha 😂😂
8/22/22, 9:04 PM - Vishal Verma: Smjh ni aa rha isko profitable bolu ya ni
8/22/22, 9:04 PM - Vishal Verma: 😂
8/22/22, 9:04 PM - Harshil B: 1 mahine mei 6 star ka real technique 😂
8/22/22, 9:05 PM - Vishal Verma: 6 star apne clg me ni h. Koi
8/22/22, 9:05 PM - Harshil B: Cllg ka nhi pta
8/22/22, 9:06 PM - Vishal Verma: Mene kl clg name dalkr profiles nikali max 5 star thi
8/22/22, 9:06 PM - Harshil B: 5 star mei bhi L lg jaenge aane mej 😂
8/22/22, 9:08 PM - Harshit USICT: This message was deleted
8/22/22, 9:08 PM - Harshit USICT: This message was deleted
8/22/22, 9:09 PM - Vishal Verma: @918595977648 prince tiwari k sath rhe rha h kya
8/22/22, 9:10 PM - Vishal Verma: Lang. bigad rhi teri
8/22/22, 9:10 PM - Vishal Verma: 😂
8/22/22, 9:10 PM - Harshil B: 😂😂😂😂
8/22/22, 9:10 PM - Harshit USICT: Bhai mene dekha nhi merko laga insta ki hack hogi
8/22/22, 9:11 PM - Harshit USICT: Naa ye to chutiya hai 😂
8/22/22, 9:11 PM - Harshit USICT: Toa gao se mera koi contact nhi hai guru 😂🤣
8/22/22, 9:11 PM - Harshil B: 😂😂😂
3/6/23, 8:52 PM - Harshil B removed Harshit USICT
3/6/23, 8:52 PM - Harshil B added Aeron Dhruv
3/6/23, 8:52 PM - Harshil B: Sb icpc ki site pr jaake apni id bnalo
3/6/23, 8:53 PM - Harshil B: https://icpc.global/
3/6/23, 8:53 PM - Aeron Dhruv: bna di
3/6/23, 8:53 PM - Harshil B: Process toh bda lmba h registation ka
Dean ko mail likhi h abhi permission ki
3/6/23, 8:53 PM - Harshil B: Bkc
3/6/23, 8:54 PM - Aeron Dhruv: bc
3/6/23, 8:54 PM - Aeron Dhruv: itna sab krna padta h kya
3/6/23, 8:54 PM - Harshil B: Haa bhai krha hu🙂🙂
3/6/23, 8:54 PM - Vishal Verma: 18 March ko h na?
3/6/23, 8:54 PM - Harshil B: Haan
3/6/23, 8:54 PM - Harshil B: DSA padhlo ab 17 tak
3/6/23, 8:55 PM - Harshil B: Regionals tk jaana hai
3/6/23, 8:55 PM - Vishal Verma: Thik h tab tk to ho jaega DSA poora
3/6/23, 8:56 PM - Vishal Verma: Aeron DSA god sath h 🙇♂️
3/6/23, 8:56 PM - Vishal Verma: no worries
3/6/23, 8:56 PM - Harshil B: Aeron sir bacha lena🛐
3/6/23, 9:02 PM - Aeron Dhruv: Bkl
3/6/23, 9:03 PM - Aeron Dhruv: Maine toh sirf 60 ques kiye h leet code pe
3/6/23, 9:03 PM - Aeron Dhruv: Tumne 250-250 kr liye
3/6/23, 9:04 PM - Harshil B: Team name btao fast
3/6/23, 9:05 PM - Vishal Verma: poo c lickers
3/6/23, 9:05 PM - Harshil B: 🙂🙂
3/6/23, 9:05 PM - Harshil B: straw hat coders
3/6/23, 9:06 PM - Vishal Verma: Code Crusaders
The Binary Bandits
Pixel Pioneers
The Syntax Squad
The Debuggers
The Algorithm Avengers
The Scripting Sultans
The Dev Dynasty
The Programming Pros
The Code Commanders
3/6/23, 9:06 PM - Vishal Verma: jo psnd aye bhr de
3/6/23, 9:06 PM - Harshil B: ye bta
3/6/23, 9:07 PM - Vishal Verma: Ye to khi use kra tha?
3/6/23, 9:07 PM - Harshil B: tunne kra tha khi
3/6/23, 9:07 PM - Vishal Verma: Daal de yhi
3/6/23, 9:23 PM - Harshil B: Dhruv Aeron (dhruv.aeron3@gmail.com): has not filled start date of studies to determine the eligibility.
Harshil Bansal (harshilbansal18@gmail.com): doesn't have Institution/Employment/Company set in the profile.
Harshil Bansal (harshilbansal18@gmail.com): has incomplete registration
Vishal Verma (vishal.4516401521@ipu.ac.in): has not filled start date of studies to determine the eligibility.
3/6/23, 9:23 PM - Harshil B: Apni apni profile mei ye updates krdo
3/6/23, 9:25 PM - Vishal Verma: Home airport code
3/6/23, 9:25 PM - Vishal Verma: ??
3/6/23, 9:25 PM - Harshil B: DEL
3/6/23, 9:28 PM - Harshil B: Jiski bhi profile mei * vale rehgye hai unhe bhardena
3/6/23, 9:30 PM - Vishal Verma: Done 👍
3/6/23, 9:32 PM - Harshil B: Abhi bhi incomplete arha h tera
3/6/23, 9:32 PM - Harshil B: Hogya clear ab
3/6/23, 9:33 PM - Aeron Dhruv: Done
3/6/23, 9:41 PM - Harshil B: 15 March: 2 - 4 practice session
3/6/23, 9:41 PM - Harshil B: 18 March- 2-4 prelims
3/6/23, 9:41 PM - Vishal Verma: <Media omitted>
3/6/23, 9:42 PM - Harshil B: https://www.gla.ac.in/icpc/dates.html
3/6/23, 9:43 PM - Harshil B: Kiska paytm bank se bhi linked h
3/6/23, 9:46 PM - Vishal Verma: Upi?
3/6/23, 9:47 PM - Aeron Dhruv: UPI krna h??
3/6/23, 9:50 PM - Harshil B: Haan
3/6/23, 9:53 PM - Harshil B: Google pay bhi kr skte hai
3/6/23, 9:53 PM - Harshil B: https://www.gla.ac.in/icpc/registration.html
3/6/23, 9:53 PM - Harshil B: Isme end mei registartion details hai
3/6/23, 9:53 PM - Harshil B: Jo bhi krha h pehle yaha decide kro
3/6/23, 9:54 PM - Harshil B: AUR SCREENSHOT LENA HAI PAYMENT KA
3/6/23, 9:54 PM - Harshil B: SCREENSHOT MATT BHOOLNAAAAAA
3/6/23, 10:01 PM - Vishal Verma: pay kr deta hu fir ss bhej dunga yha pr
3/6/23, 10:01 PM - Vishal Verma: @918130210663 fir tu form bhr dio
3/6/23, 10:01 PM - Harshil B: Ok
3/6/23, 10:01 PM - Harshil B: Abhi krde fast fir
3/6/23, 10:07 PM - Vishal Verma: <Media omitted>
3/6/23, 10:10 PM - Harshil B: Registration process hogya hai complete🥱🥱
3/6/23, 10:11 PM - Aeron Dhruv: @919268064870 apni UPI I'd bhej
3/6/23, 10:11 PM - Aeron Dhruv: Transfer kr deta hu
3/6/23, 10:11 PM - Harshil B: Paytm number bhi
3/6/23, 10:11 PM - Harshil B: Wallet mei doonga
3/6/23, 10:11 PM - Vishal Verma: 9268064870
3/6/23, 10:12 PM - Vishal Verma: wallet me kese aate h?
3/6/23, 10:12 PM - Harshil B: Normal paytm wallet mei pade rhenge
3/6/23, 10:13 PM - Aeron Dhruv: Abhi ho nhi rhe
3/6/23, 10:13 PM - Aeron Dhruv: Thodi der mei krta hu
3/6/23, 10:13 PM - Vishal Verma: gpay kr rha h kya?
3/6/23, 10:13 PM - Aeron Dhruv: Hnn
3/6/23, 10:15 PM - Vishal Verma: vishalverma41889@oksbi
3/6/23, 10:15 PM - Harshil B: Number pta paytm vala
3/6/23, 10:15 PM - Harshil B: Aur kitne dene hai
3/6/23, 10:15 PM - Vishal Verma: Gpay wali ye h bhai
3/6/23, 10:16 PM - Vishal Verma: Jitne dene dede bhai 🐧
3/6/23, 10:16 PM - Harshil B: 🙂🙂
3/6/23, 10:16 PM - Harshil B: Number tera hi h paytm pr?
3/6/23, 10:16 PM - Aeron Dhruv: Dedso rupiya dega
3/6/23, 10:17 PM - Vishal Verma: Hn
3/6/23, 10:17 PM - Vishal Verma: Apna rate mt bta bgai
3/6/23, 10:17 PM - Vishal Verma: Bhai*
3/6/23, 10:17 PM - Aeron Dhruv: Abbe saale
3/6/23, 10:17 PM - Vishal Verma: 😂😂💀
3/6/23, 10:21 PM - Harshil B: 9 ko bhi h ek competition
4.30 baje
Yaad haina
3/6/23, 10:21 PM - Vishal Verma: konsa?
3/6/23, 10:22 PM - Harshil B: Hi! I want you to join my team Straw Hat coders - https://challenges.reply.com:443/tamtamy/page/teamupinvite.action?teamUpCode=W-hpMKVIUy9bFPk6ktU9IJfTU4T2_2JsfEHnXQS1w_qJBS2XaaQjjrZGONoCDjyWxF8DxvEVyhqyq1NIHT_2UksbXZC3cb94Dc8Ogl3odkMI7dJY97ujl2cgagzxZelh&ref=33876354-3ad0-4851-8ddb-8c00dcbbe994
3/6/23, 10:24 PM - Vishal Verma: Arre hn bc mene hi to bnayi thi team
3/6/23, 10:24 PM - Vishal Verma: 💀💀
3/6/23, 10:24 PM - Harshil B: 😂😂
3/9/23, 9:08 AM - Vishal Verma: 9 PM aa jana
3/9/23, 8:34 PM - Vishal Verma: Oye kese krna h discord ya meet?
3/9/23, 8:34 PM - Aeron Dhruv: Discord
3/9/23, 8:36 PM - Vishal Verma: 10 min Pehle server link bhej dio
3/9/23, 8:38 PM - Aeron Dhruv: It wale pe hi aajiyo
3/9/23, 8:39 PM - Vishal Verma: Ansh ko bhi bol de
3/9/23, 8:51 PM - Harshil B: Ye kya h
3/9/23, 8:55 PM - Vishal Verma: https://discord.gg/FrB5hTG3
3/9/23, 8:59 PM - Harshil B: https://challenges.reply.com/tamtamy/challenge/code-challenge-2023/detail
3/13/23, 11:29 PM - Vishal Verma: https://codedrills.io/contests/icpc-amritapuri-2020-preliminary-round
3/15/23, 7:40 PM - Harshil B: <Media omitted>
3/15/23, 7:40 PM - Harshil B: Prelims ke liye team accept hogyi h
3/15/23, 7:40 PM - Harshil B: Ab qualify aur kar jae🤧🤧
3/15/23, 7:48 PM - Vishal Verma: <Media omitted>
3/17/23, 5:27 PM - Harshil B: Ek baar mail check krlo icpc se aaj koi aai ho toh
3/17/23, 5:27 PM - Harshil B: Vrna code drills pr jaake account bnalo
3/17/23, 5:27 PM - Harshil B: USSI MAIL SE JISS SE ICPC MEI LOGIN KIYA H
3/17/23, 6:43 PM - Aeron Dhruv: Okay
3/17/23, 7:22 PM - Vishal Verma: Kb start hoga ye?
3/17/23, 7:23 PM - Vishal Verma: Practice round?
3/17/23, 7:25 PM - Harshil B: 8
3/17/23, 7:25 PM - Harshil B: 8-10
3/17/23, 7:26 PM - Harshil B: Code drills site pr jake
3/17/23, 7:51 PM - Aeron Dhruv: Meet ya discord?
3/17/23, 7:58 PM - Harshil B: Kuch bhi krlo
3/17/23, 7:58 PM - Harshil B: Meet bnale
3/17/23, 7:59 PM - Aeron Dhruv: https://meet.google.com/ekq-wgkx-bfd
3/17/23, 8:01 PM - Vishal Verma: 15 min baad aunga
3/17/23, 8:04 PM - Harshil B: Itne toh hum solve krdene sbb
3/17/23, 8:05 PM - Vishal Verma: Heavy comders 🛐🛐
3/17/23, 8:40 PM - Aeron Dhruv: // I intend to live life, not just exist...
// Aeron
#include <bits/stdc++.h>
using namespace std;
#define f(i, n) for (int i = 0; i < n; i++)
#define fo(i, x, n) for (int i = x; i < n; i++)
#define fr(i, k, n) for (int i = k; i >= n; i--)
#define int long long
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define sortall(x) sort(all(x))
#define PI 3.1415926535897932384626
#define deb(x) cout << #x << "=" << x << endl
#define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pii;
typedef unordered_set<int> usi;
typedef set<int> si;
typedef unordered_map<int, int> umii;
typedef map<int, int> mii;
const int mod = 1'000'000'007;
void solution()
{
}
signed main()
{
int t = 1;
cin >> t;
while (t--)
{
solution();
}
}
3/17/23, 8:41 PM - Aeron Dhruv: // I intend to live life, not just exist...
// Aeron
#include <bits/stdc++.h>
using namespace std;
#define f(i, n) for (int i = 0; i < n; i++)
#define fo(i, x, n) for (int i = x; i < n; i++)
#define fr(i, k, n) for (int i = k; i >= n; i--)
#define int long long
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define sortall(x) sort(all(x))
#define PI 3.1415926535897932384626
#define deb(x) cout << #x << "=" << x << endl
#define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> pii;
typedef unordered_set<int> usi;
typedef set<int> si;
typedef unordered_map<int, int> umii;
typedef map<int, int> mii;
const int mod = 1'000'000'007;
bool solve(string s)
{
for (int i = 0; i < s.length(); i++)
{
if (!isdigit(s[i]))
{
return false;
}
}
return true;
}
void solution()
{
int n;
string y = "yes";
cin >> n;
n *= 2;
vector<string> v;
f(i, n)
{
string x;
cin >> x;
v.pb(x);
if (x == y)
{
n++;
}
if (solve(x))
{
int xx = stoi(x);
n += xx;
}
}
int ans = 0;
f(i, n)
{
if(v[i]==y){
ans += 1;
ans += stoi(v[i + 1]);
}
}
cout << ans;
}
signed main()
{
int t = 1;
cin >> t;
while (t--)
{
solution();
}
}
3/17/23, 9:51 PM - Vishal Verma: #include <bits/stdc++.h>
using namespace std;
void solution()
{
string y = "yes";
int n;
int ans = 0;
cin >> n;
string name;
string coming;
for (int i = 0; i < n; i++)
{
int sathi = 0;
cin >> name;
cin >> coming;
if (coming == "yes" || coming == "YES")
{
ans++;
cin >> sathi;
}
ans += sathi;
string g;
for (int j = 0; j < sathi; j++)
{
cin >> g;
}
}
cout << ans << endl;
}
int main()
{
int t;
cin >> t;
while (t--)
{
solution();
}
return 0;
}
3/17/23, 10:04 PM - Harshil B: Rules
Will follow standard ICPC scoring system. 1 point per problem and 20 minutes penalty for each unsuccesful submission.
3/17/23, 10:08 PM - Harshil B: Yes it will be similar
3/17/23, 10:09 PM - Harshil B: Bhaiya kehrhe similar aenge🐧
3/17/23, 10:10 PM - Aeron Dhruv: Fir toh clear kr lenge
3/17/23, 10:10 PM - Aeron Dhruv: 🎊
3/17/23, 10:11 PM - Harshil B: 🤧🤧
3/17/23, 10:11 PM - Aeron Dhruv: Kitni rank chaiye hoti h??
3/17/23, 10:11 PM - Harshil B: Mssg kra h
3/17/23, 10:11 PM - Vishal Verma: Under 200 ig
3/17/23, 10:12 PM - Harshil B: Ya toh ig college mei uss region mei rank 1
Vrna top 200
3/17/23, 10:13 PM - Aeron Dhruv: Acha
3/18/23, 1:36 PM - Harshil B: 2 bajne vale h
3/18/23, 1:37 PM - Vishal Verma: <Media omitted>
3/18/23, 1:38 PM - Harshil B: <Media omitted>
3/18/23, 1:38 PM - Aeron Dhruv: .
3/18/23, 1:38 PM - Aeron Dhruv: Issi par aajaao
3/18/23, 1:40 PM - Harshil B: 🫡
3/18/23, 2:32 PM - Vishal Verma: #include <bits/stdc++.h>
using namespace std;
void solve(string s , string m , deque<char> n , int i , bool &flag){
if(s.length() == i){
string final = "";
while(!n.empty()){
final += n.front();
n.pop_front();
}
if(final == m)
{
flag = true;
}
return;
}
n.push_front(s[i]);
solve(s , m , n , i+1 , flag);
n.pop_front();
n.push_back(s[i]);
solve(s , m , n , i+1 , flag);
}
void solution(int num){
int l;
string s , m;
bool flag = false;
cin>>l;
cin>>s>>m;
deque<char> n;
int i=0;
solve(s , m , n , i , flag);
cout<<"Case "<<num<<": ";
if(flag)
cout<<"YES"<<endl;
else
cout<<"NO"<<endl;
}
int main()
{
int t;
cin>>t;
for(int i=1 ; i<=t ; i++)
{
solution(i);
}
return 0;
}
3/18/23, 2:32 PM - Aeron Dhruv: // I intend to live life, not just exist...
// Aeron
#include <bits/stdc++.h>
using namespace std;
#define f(i, n) for (int i = 0; i < n; i++)
#define fo(i, x, n) for (int i = x; i < n; i++)
#define fr(i, k, n) for (int i = k; i >= n; i--)
#define int long long
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define sortall(x) sort(all(x))
#define PI 3.1415926535897932384626
#define deb(x) cout << #x << "=" << x << endl
#define deb2(x, y) cout << #x << "=" << x << "," << #y << "=" << y << endl
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> pii;
typedef unordered_set<int> usi;
typedef set<int> si;
typedef unordered_map<int, int> umii;
typedef map<int, int> mii;
const int mod = 1'000'000'007;
bool solution(string N, string St, string M)
{
if (N == M)
{
return true;
}
if(N!=M && N.length()==M.length()){
return false;
}
char temp = St[0];
St.erase(0, 1);
return solution(N + temp, St, M) || solution(temp + N, St, M);
}
signed main()
{
int t = 1;
cin >> t;
for (int i = 1; i <= t; i++)
{
int n;
string St, M;
cin >> n >> St >> M;
string N = "";
if(solution(N,St,M)){
cout << "Case "<<i<<": YES" << endl;
}
else{
cout << "Case " << i << ": NO" << endl;
}
}
}
3/18/23, 2:43 PM - Vishal Verma: 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
3/18/23, 3:45 PM - Vishal Verma: cout << "Case " << x << ": ";
if (res)
cout << "YES" << endl;
else
cout << "NO" << endl;
3/18/23, 4:03 PM - Harshil B: <Media omitted>
3/19/23, 10:07 AM - Harshil B: Kisi ke pass koi bhi mail aae icpc ya codedrills ki toh batana
3/19/23, 10:09 AM - Vishal Verma: <Media omitted>
9/25/23, 6:18 PM - Aeron Dhruv: .
9/25/23, 6:19 PM - Vishal Verma: What hui ?
9/25/23, 6:19 PM - Aeron Dhruv: Form aaya h icpc ka
9/25/23, 6:19 PM - Vishal Verma: India k saare region k bhr do
9/25/23, 6:20 PM - Vishal Verma: Bhen chod denge is baar
9/25/23, 6:20 PM - Vishal Verma: 💪
9/25/23, 6:57 PM - Harshil B: Bhardo
9/25/23, 6:57 PM - Harshil B: Kab bai
9/25/23, 6:57 PM - Harshil B: Hai*
9/25/23, 7:05 PM - Aeron Dhruv: Krta hu check
9/25/23, 7:11 PM - Harshil B: November mei hoga
9/25/23, 7:13 PM - Harshil B: <Media omitted>
9/25/23, 7:18 PM - Aeron Dhruv: Registration open hogya??
9/25/23, 7:20 PM - Harshil B: Likha toh h
Ghar jaake dekhta hu
9/25/23, 7:21 PM - Vishal Verma: Preliminary wala regional k baad hota h?
9/25/23, 7:21 PM - Harshil B: Pehle
9/25/23, 7:31 PM - Vishal Verma: 1 baat btao amritapuri ka online round to ho rha h
9/25/23, 7:31 PM - Vishal Verma: Mathura Kanpur ka kyo ni ho rha?
9/25/23, 7:32 PM - Harshil B: Nhi horha?
9/25/23, 7:32 PM - Aeron Dhruv: Hoga ig voh bhi but thoda late hota h na
9/25/23, 7:33 PM - Vishal Verma: <Media omitted>
9/25/23, 7:33 PM - Vishal Verma: <Media omitted>
9/25/23, 7:33 PM - Vishal Verma: You deleted this message
9/25/23, 7:34 PM - Vishal Verma: ye or upr jo harshil ne bheja h wo same h kya?
9/25/23, 7:36 PM - Aeron Dhruv: Upar wala amritapuri ka h ig
9/25/23, 7:37 PM - Vishal Verma: abe wo to pta h
9/25/23, 7:37 PM - Vishal Verma: round puch rha hu me
9/25/23, 7:37 PM - Harshil B: Dekhta hu
9/25/23, 8:37 PM - Harshil B: Abhi koi info nhi hai Mathura ki kahi pr
9/29/23, 12:25 PM - Harshil B: Krdu na fir register?
9/29/23, 12:25 PM - Vishal Verma: Hn krde
9/29/23, 12:25 PM - Vishal Verma: Mentor reena?
9/29/23, 12:26 PM - Harshil B: Mrzi hai
Aur doosri toh ig Anuradha hai
9/29/23, 12:26 PM - Harshil B: Baaki nhi pta
9/29/23, 12:28 PM - Vishal Verma: Dekh dean bhi change ho rha h 1 oct se
9/29/23, 12:29 PM - Vishal Verma: Usse sign bhi krwane pdenge
9/29/23, 12:29 PM - Vishal Verma: Reena hi shi h
9/29/23, 12:30 PM - Aeron Dhruv: Krde
9/29/23, 12:30 PM - Harshil B: Dean se hume thodi krvane h
9/29/23, 12:31 PM - Harshil B: Student cell vale dekhenge vo
9/29/23, 12:31 PM - Aeron Dhruv: Reena hi shi h
9/29/23, 12:32 PM - Harshil B: Okk
10/9/23, 4:50 PM - Aeron Dhruv: Registrations kab tk krni h??
10/9/23, 4:51 PM - Aeron Dhruv: Koi idea
10/9/23, 4:51 PM - Aeron Dhruv: Ek jana puch rha h
10/9/23, 4:51 PM - Harshil B: Reena se poocha nhi class mei?
10/9/23, 4:51 PM - Harshil B: Fir kya krha tha
10/9/23, 4:51 PM - Aeron Dhruv: Kuch aur baat kr rha tha
10/9/23, 4:51 PM - Aeron Dhruv: Alcom ka
10/9/23, 4:51 PM - Harshil B: Lawda
10/12/23, 6:51 PM - Harshil B: Gays
10/12/23, 6:51 PM - Harshil B: Top 100 mei aana h iss baar
10/12/23, 6:51 PM - Harshil B: Dhang se preparation krenge
10/12/23, 7:03 PM - Aeron Dhruv: Arre bc
10/12/23, 7:03 PM - Aeron Dhruv: 🫡🫡
10/12/23, 7:03 PM - Aeron Dhruv: Yeh bta forces pe kre ya leetroom
10/12/23, 7:03 PM - Aeron Dhruv: Any suggestions?
10/12/23, 7:04 PM - Harshil B: Forces
10/12/23, 7:04 PM - Aeron Dhruv: Okay
10/12/23, 7:05 PM - Vishal Verma: forces
10/12/23, 7:06 PM - Vishal Verma: sat ko plan krte h
10/12/23, 7:06 PM - Vishal Verma: dhng se
10/12/23, 7:06 PM - Harshil B: Okk
10/12/23, 7:07 PM - Aeron Dhruv: Sat bahar hu
10/12/23, 7:07 PM - Aeron Dhruv: 😅
10/12/23, 7:07 PM - Harshil B: Plan toh kr hi skte h 🤡
10/12/23, 7:07 PM - Aeron Dhruv: Hn😑
10/14/23, 4:32 PM - Vishal Verma: @919315256335 dalle jb ghr aega msg kr dio
10/14/23, 4:32 PM - Vishal Verma: tb meet kr lenge
10/14/23, 7:14 PM - Aeron Dhruv: 10 bje
10/14/23, 7:14 PM - Aeron Dhruv: ??
10/14/23, 7:16 PM - Vishal Verma: Okays
10/14/23, 8:31 PM - Aeron Dhruv: Abhi kre meet??
10/14/23, 8:31 PM - Aeron Dhruv: Fir sone Jaa rha
10/14/23, 9:30 PM - Vishal Verma: Aa rhe ho?
10/14/23, 9:30 PM - Vishal Verma: @919315256335 @918130210663
10/14/23, 9:30 PM - Vishal Verma: ??
10/14/23, 9:30 PM - Harshil B: @919315256335
10/14/23, 9:31 PM - Aeron Dhruv: Aaja
10/14/23, 9:31 PM - Vishal Verma: https://meet.google.com/aqi-hcrx-jve
10/14/23, 9:31 PM - Harshil B: 5 min
10/14/23, 9:31 PM - Aeron Dhruv: H u n m d r ad for a
10/14/23, 9:31 PM - Aeron Dhruv: Aaya
10/14/23, 9:31 PM - Harshil B: Ok
10/14/23, 9:32 PM - Vishal Verma: Shi baat h
10/14/23, 9:35 PM - Vishal Verma: @918130210663 baby aao na
10/14/23, 9:35 PM - Harshil B: Avya
10/14/23, 9:35 PM - Harshil B: Agya*
10/14/23, 9:41 PM - Aeron Dhruv: https://blog.shahjalalshohag.com/topic-list/
10/14/23, 9:42 PM - Aeron Dhruv: https://ultimatetopiclist.netlify.app/topics
10/14/23, 9:48 PM - Aeron Dhruv: dhruv.aeron3@gmail.com
10/15/23, 6:47 PM - Harshil B added Ansh Goyal
10/15/23, 6:48 PM - Ansh Goyal: Itte heavy coders ke grp me mereko dal Diya
10/15/23, 6:48 PM - Ansh Goyal: M dhanya dhanya hogya
10/15/23, 6:48 PM - Harshil B: Humara ace hai tu
Team mei agya ab toh🛐🛐
10/15/23, 6:49 PM - Vishal Verma: bhaiya yha bhi carry kr lo 🥹🥹
10/17/23, 4:53 PM - Ansh Goyal: behen ke lodo
10/17/23, 4:53 PM - Ansh Goyal: kuch karna h ya nhi
10/17/23, 4:54 PM - Harshil B: Pta nhi bc
10/17/23, 4:54 PM - Harshil B: Library mei toh itna josh dikha diya tha
10/17/23, 4:55 PM - Ansh Goyal: jo 2 min mere jaate hi thanda
10/17/23, 4:57 PM - Vishal Verma: Time btao
10/17/23, 4:57 PM - Vishal Verma: Kis time free ho
10/17/23, 4:57 PM - Vishal Verma: 1.5 ghnta bethenge
10/17/23, 4:57 PM - Harshil B: 6.30 se 8.30 ke alawa all day free
10/17/23, 4:58 PM - Vishal Verma: @919315256335 lugayi
10/17/23, 4:58 PM - Ansh Goyal: Gym noh Maya h
10/17/23, 4:59 PM - Harshil B: <Media omitted>
10/17/23, 5:00 PM - Vishal Verma: 9 se 10:30 koi RR h kisi k?
10/17/23, 5:02 PM - Ansh Goyal: yes
10/17/23, 5:02 PM - Ansh Goyal: aeron h
10/17/23, 5:02 PM - Ansh Goyal: uska peak time
10/17/23, 5:14 PM - Aeron Dhruv: Ok
10/17/23, 8:33 PM - Ansh Goyal: 9 bje jo nhi aaya vo namard
10/17/23, 8:33 PM - Ansh Goyal: discord aajana
10/17/23, 8:34 PM - Vishal Verma: ++
10/17/23, 9:01 PM - Ansh Goyal: matlab teeno namard
10/17/23, 9:01 PM - Aeron Dhruv: joining in 5
10/17/23, 9:01 PM - Harshil B: Donno bol*
10/17/23, 9:01 PM - Ansh Goyal: ab toh tu namard hogya
10/17/23, 9:02 PM - Ansh Goyal: dalit
10/17/23, 9:02 PM - Ansh Goyal: ++ likhne se kaam nhi chalta
10/17/23, 9:02 PM - Vishal Verma: Agya
10/17/23, 9:02 PM - Harshil B: Isne toh agree bhi kra tha
10/17/23, 9:02 PM - Aeron Dhruv: only dalit is namard
10/17/23, 9:02 PM - Aeron Dhruv: me ontime
10/17/23, 9:03 PM - Vishal Verma: Aja chussa maar le isi baat pe
10/17/23, 9:03 PM - Harshil B: Mera bhi please
10/17/23, 9:05 PM - Ansh Goyal: null
10/17/23, 9:05 PM - Ansh Goyal: null
10/17/23, 9:05 PM - Ansh Goyal: null
10/17/23, 9:05 PM - Ansh Goyal: null
10/17/23, 9:06 PM - Ansh Goyal: 2901 2902 2905 2906
10/17/23, 9:06 PM - Vishal Verma: https://leetcode.com/problems/longest-unequal-adjacent-groups-subsequence-ii/description/
10/17/23, 10:41 PM - Ansh Goyal: @919268064870 @918130210663 official namard aeron
10/17/23, 10:42 PM - Vishal Verma: 🏳🌈🏳🌈🏳🌈🏳🌈🏳🌈Le bhai @919315256335 in jhndo k kpde sila le
10/17/23, 10:43 PM - Aeron Dhruv: Bkl
10/17/23, 10:43 PM - Aeron Dhruv: Ghar pe paint chal rha
10/17/23, 10:43 PM - Harshil B: Bc discord na aya gya
Bgmi ajao
10/17/23, 10:43 PM - Aeron Dhruv: Toh majdoori kr rha tha
10/17/23, 10:43 PM - Vishal Verma: Ye kya excuse h bkl
10/17/23, 10:43 PM - Aeron Dhruv: Aajao discord
10/17/23, 10:44 PM - Aeron Dhruv: Bhai 3rd floor se saman 4th pe shift kr rha tha
10/17/23, 10:44 PM - Vishal Verma: 1.5 ghnta the
10/17/23, 10:44 PM - Vishal Verma: ho gya aaj ka
10/17/23, 10:44 PM - Aeron Dhruv: Ques bhej de
10/17/23, 10:44 PM - Aeron Dhruv: I'll practice
10/17/23, 10:44 PM - Vishal Verma: kl 9 bje paint nakrna ho to aa jaio
10/17/23, 10:44 PM - Vishal Verma: .
10/17/23, 10:44 PM - Aeron Dhruv: Pkka
10/17/23, 10:44 PM - Aeron Dhruv: I'll be there ontime
10/17/23, 10:44 PM - Aeron Dhruv: Forsure
10/17/23, 10:45 PM - Aeron Dhruv: Teri maa ki Kasam @919268064870
10/17/23, 10:45 PM - Vishal Verma: dadi ki kasam ni khate
10/17/23, 10:46 PM - Aeron Dhruv: <Media omitted>
10/18/23, 6:34 PM - Harshil B: Mai late aunga aaj thoda
Possibility hai ki na aapau
Bahar jaana h
10/18/23, 6:46 PM - Harshil B: <Media omitted>
10/18/23, 7:59 PM - Vishal Verma: 10 tk aa jaega?
10/18/23, 9:05 PM - Aeron Dhruv: Btao
10/18/23, 9:11 PM - Harshil B: Hn
10/18/23, 9:15 PM - Ansh Goyal: bhai codechef <This message was edited>
10/18/23, 9:15 PM - Ansh Goyal: ?
10/18/23, 9:22 PM - Vishal Verma: Dost ka OA dilwa rha tha
10/18/23, 9:22 PM - Vishal Verma: tumne Diya?
10/18/23, 9:22 PM - Vishal Verma: Aaj iske hi krenge
10/18/23, 9:22 PM - Aeron Dhruv: Nhi diya
10/18/23, 9:22 PM - Ansh Goyal: trilogy ka?
10/18/23, 9:23 PM - Vishal Verma: 10 bje jo DC ni aya wo 🏳🌈
10/18/23, 9:23 PM - Vishal Verma: Hn
10/18/23, 9:23 PM - Ansh Goyal: gand aaya
10/18/23, 9:23 PM - Aeron Dhruv: 10:15 tk
10/18/23, 9:23 PM - Aeron Dhruv: Meet h
10/18/23, 9:23 PM - Vishal Verma: bc 4 ques. chaaron gaand faad
10/18/23, 9:23 PM - Ansh Goyal: teri koi zarurat nhi us meet me
10/18/23, 9:23 PM - Aeron Dhruv: Okqy
10/18/23, 9:23 PM - Vishal Verma: AB bol
10/18/23, 9:23 PM - Vishal Verma: @919315256335 bkl
10/18/23, 9:25 PM - Aeron Dhruv: wot
10/18/23, 9:27 PM - Harshil B: Aeron bhai tu btadio koi faltu bole toh
Team se remove krdunga ussi time
10/18/23, 9:27 PM - Aeron Dhruv: @919268064870 bkl h
10/18/23, 9:27 PM - Aeron Dhruv: isse remove kiya jaye
10/18/23, 9:27 PM - Vishal Verma: <Media omitted>
10/18/23, 9:28 PM - Vishal Verma: Mere mu te nikl gyi
10/18/23, 9:28 PM - Aeron Dhruv: aise hi darr bna rehna chaiye
10/18/23, 9:29 PM - Vishal Verma: Plz mujhe chod do
10/18/23, 9:29 PM - Harshil B: Theeke hojaega
10/18/23, 9:29 PM - Vishal Verma: Mujhe randikhane nhi jana
10/18/23, 9:29 PM - Aeron Dhruv: wot
10/18/23, 9:29 PM - Aeron Dhruv: maine kuch aur padha
10/18/23, 10:02 PM - Harshil B: Sbke sb 🏳🌈🏳🌈
10/18/23, 10:02 PM - Vishal Verma: not me
10/18/23, 10:02 PM - Vishal Verma: mera DC update ho rha
10/18/23, 10:03 PM - Harshil B: Nice nice
10/18/23, 10:04 PM - Vishal Verma: @918920003561 @919315256335 gays cum fast
10/18/23, 10:06 PM - Aeron Dhruv: aayaaya
10/18/23, 10:07 PM - Vishal Verma: https://www.codechef.com/problems/SANTACHOC\
10/18/23, 10:12 PM - Ansh Goyal: #include <iostream>
using namespace std;
int main() {
// your code goes here
int t;
cin>>t;
while(t--){
int n,k;
cin>>n>>k;
int x;
int sm=0;
for(int i=0;i<n;i++){
cin>>x;
sm+=x;
}
if(k==0){
if(sm%n==0 && sm>0) cout<<"YES\n";
else cout<<"NO\n";
}else{
if(sm>=n) cout<<"YES\n";
else cout<<"NO\n";
}
}
return 0;
}
10/19/23, 1:20 PM - Harshil B: Din mei aoge?
10/19/23, 1:20 PM - Harshil B: 3 ya 3.30 tk?
10/19/23, 1:20 PM - Vishal Verma: I'm in
10/19/23, 1:25 PM - Harshil B: @918920003561 @919315256335
10/19/23, 1:36 PM - Aeron Dhruv: Okt
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.10.10.10.
10/19/23, 2:25 PM - Vishal Verma: 10.
10/19/23, 2:25 PM - Vishal Verma: .
10/19/23, 2:26 PM - Harshil B: Ok
10/19/23, 2:26 PM - Harshil B: Aur kuch?
10/19/23, 2:26 PM - Vishal Verma: 000000.
10/19/23, 2:26 PM - Harshil B: Achaa
10/19/23, 2:26 PM - Harshil B: Harshit ko bhejta hu decode krdega
10/19/23, 2:27 PM - Ansh Goyal: Valo?
10/19/23, 2:27 PM - Vishal Verma: Are bc 😂
10/19/23, 2:27 PM - Vishal Verma: isko delete krne ka mn bhi ni kr rha
10/19/23, 2:28 PM - Vishal Verma: 😂😂
10/19/23, 2:28 PM - Vishal Verma: match dekh rha
10/19/23, 2:29 PM - Ansh Goyal: aana ek game
10/19/23, 2:29 PM - Vishal Verma: aya
10/19/23, 2:32 PM - Vishal Verma: update ho rhi
10/19/23, 2:32 PM - Vishal Verma: 1 min
10/19/23, 2:37 PM - Vishal Verma: @918920003561
10/19/23, 2:42 PM - Vishal Verma: @918920003561 lodu aja
10/19/23, 2:44 PM - Ansh Goyal: Aaagay
10/19/23, 6:10 PM - Vishal Verma: YT pr Adblocker ki kya bkchodi ho gyi ye
10/19/23, 6:12 PM - Harshil B: Ban krne lg gye ig account jo use krhe h
10/19/23, 6:47 PM - Aeron Dhruv: Brave chala le
10/19/23, 8:48 PM - Harshil B: Kitne baje aana h
10/19/23, 8:48 PM - Vishal Verma: 9:30
10/19/23, 8:54 PM - Ansh Goyal: Gay
10/19/23, 8:59 PM - Harshil B: Aaj leetcode daily krlenge aur ICPC ke past year?
10/19/23, 9:02 PM - Aeron Dhruv: Okay
10/19/23, 9:36 PM - Ansh Goyal: gays @919268064870 @919315256335
10/19/23, 9:36 PM - Harshil B: 🏳🌈🏳🌈
10/19/23, 9:37 PM - Aeron Dhruv: Aaya
10/19/23, 9:39 PM - Vishal Verma: 2min
10/19/23, 9:43 PM - Ansh Goyal: Abe namardo
10/19/23, 9:43 PM - Harshil B: Chod do bhai
10/19/23, 9:43 PM - Harshil B: Mai jarha ab
10/19/23, 9:43 PM - Harshil B: Gays paal rkhe h
10/19/23, 9:44 PM - Ansh Goyal: Good night
10/19/23, 9:46 PM - Aeron Dhruv: Aagay
10/19/23, 9:47 PM - Ansh Goyal: Ab m jara gn
10/19/23, 9:48 PM - Vishal Verma: aa jao bhai
10/19/23, 9:48 PM - Vishal Verma: dawai le rha tha
10/19/23, 9:48 PM - Vishal Verma: kutto wala zhukhaam ho gya mere
10/19/23, 9:48 PM - Vishal Verma: @918920003561 @918130210663
10/19/23, 9:49 PM - Harshil B: Toh pehle insano vali dawai lerha tha?
10/19/23, 9:49 PM - Vishal Verma: Hn
10/19/23, 9:49 PM - Harshil B: Yahi toh galti krdi
10/19/23, 9:49 PM - Vishal Verma: Ab raat ko pedigree le rha hu
10/19/23, 9:49 PM - Harshil B: Haan badiya sahi krha h ab
10/19/23, 9:49 PM - Vishal Verma: DC aao
10/19/23, 9:49 PM - Harshil B: Tu khud toh aa pehle gaandu
10/19/23, 9:50 PM - Ansh Goyal: valo shuru hogya mera game
10/19/23, 9:50 PM - Harshil B: Stream krde
10/19/23, 9:50 PM - Ansh Goyal: kyu dekhna mera ganda gameplay
10/20/23, 3:49 PM - Harshil B: Barclays ka test kb doge?
10/20/23, 3:51 PM - Vishal Verma: Jab aap bolo sir
10/20/23, 3:52 PM - Aeron Dhruv: Raat ko??
10/20/23, 5:07 PM - Vishal Verma: Aaj yhi denge
10/20/23, 5:07 PM - Vishal Verma: 9 bje exact aa jana
10/20/23, 5:12 PM - Harshil B: <Media omitted>
10/20/23, 7:00 PM - Aeron Dhruv: Bhai thoda late ho jaunga
10/20/23, 7:04 PM - Ansh Goyal: 🏳🌈
10/20/23, 7:04 PM - Vishal Verma: Certified chakka
10/20/23, 9:01 PM - Ansh Goyal: namardo when
10/20/23, 9:03 PM - Aeron Dhruv: 10.30??
10/20/23, 9:06 PM - Ansh Goyal: pagal hogya h kya
10/20/23, 9:06 PM - Ansh Goyal: zindagi nhi h kya teri?
10/20/23, 9:08 PM - Harshil B: 😂😂
10/20/23, 9:13 PM - Vishal Verma: 9:30 ya 10
10/20/23, 9:13 PM - Vishal Verma: Jldi btao
10/20/23, 9:17 PM - Vishal Verma: @918130210663 @918920003561
10/20/23, 9:17 PM - Vishal Verma: Btao
ye aeron to dead h
10/20/23, 9:17 PM - Ansh Goyal: abhi aaaja
10/20/23, 9:17 PM - Vishal Verma: Ajao
10/20/23, 9:18 PM - Harshil B: 9.30 krlo
10/20/23, 9:25 PM - Aeron Dhruv: Bahar hu bc
10/20/23, 9:31 PM - Vishal Verma: Ajao lesbians
10/20/23, 11:21 PM - Aeron Dhruv: ansh bsdk
10/20/23, 11:21 PM - Aeron Dhruv: gandu
10/20/23, 11:36 PM - Aeron Dhruv: <Media omitted>