ru
Feedback
INFOSYS EXAM SOLUTIONS

INFOSYS EXAM SOLUTIONS

Открыть в Telegram

🔥Guys plz Stop fearing for daily exams 📝 👨‍💻 @srksvk is here to help you all at lowest cost possible.💪 🌀 ” Our Only Aim Is To Let Get Placed To You In A Reputed Company 🔥Effort from our side = 💯 📱Main Channel: @coding_are 📱Tel I'd : @srksvk

Больше

📈 Аналитический обзор Telegram-канала INFOSYS EXAM SOLUTIONS

Канал INFOSYS EXAM SOLUTIONS (@coding_are) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 13 559 подписчиков, занимая 14 864 место в категории Образование и 30 444 место в регионе Индия.

📊 Показатели аудитории и динамика

С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 13 559 подписчиков.

Согласно последним данным от 30 июля, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 338, а за последние 24 часа — 43, при этом общий охват остаётся высоким.

  • Статус верификации: Не верифицирован
  • Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 6.22%. В первые 24 часа после публикации контент обычно набирает 2.42% реакций от общего числа подписчиков.
  • Охват публикаций: В среднем каждый пост получает 843 просмотров. В течение первых суток публикация набирает 328 просмотров.
  • Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 3.
  • Тематические интересы: Контент сосредоточен на ключевых темах, таких как placement, gaurntee, suree, capgemini, infosy.

📝 Описание и контентная политика

Автор описывает ресурс как площадку для выражения субъективного мнения:
🔥Guys plz Stop fearing for daily exams 📝 👨‍💻 @srksvk is here to help you all at lowest cost possible.💪 🌀 ” Our Only Aim Is To Let Get Placed To You In A Reputed Company 🔥Effort from our side = 💯 📱Main Channel: @coding_are 📱Tel I'd : @srks...

Благодаря высокой частоте обновлений (последние данные получены 31 июля, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Образование.

13 559
Подписчики
+4324 часа
+2027 дней
+33830 день
Архив постов
Capgemini exam successfully completed by remote access Gaming and codeing round done with all tests cases passed ✅ Contact fo
+2
Capgemini exam successfully completed by remote access Gaming and codeing round done with all tests cases passed ✅ Contact for placement exam @srksbk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee ✅ Note - all company interview help available with sure clearance

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee ✅ Note - all company interview help available with sure clearance

Josh technology 3 rounds exam successfully completed by remote access 👍👍👍👍 3/3 code done with all tests cases passed ✅ Co
+2
Josh technology 3 rounds exam successfully completed by remote access 👍👍👍👍 3/3 code done with all tests cases passed ✅ Contact for placement exam @srksvk

Josh technology exam successfully completed by remote access 👍👍👍👍👍👍 2/2 code done with all tests cases passed ✅ 35/35 M
+2
Josh technology exam successfully completed by remote access 👍👍👍👍👍👍 2/2 code done with all tests cases passed ✅ 35/35 MCQ done with all tests cases passed ✅ Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee ✅ Note - all company interview help available with sure clearance

Ibm exam successfully completed by remote access 👍👍👍 2/2 code done with all tests cases passed ✅ Contact for placement exa
+2
Ibm exam successfully completed by remote access 👍👍👍 2/2 code done with all tests cases passed ✅ Contact for placement exam @srksvk

Ibm exam successfully completed by remote access 👍👍👍 2/2 code done with all tests cases passed ✅ Contact for placement exa
+1
Ibm exam successfully completed by remote access 👍👍👍 2/2 code done with all tests cases passed ✅ Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee ✅ Note - all company interview help available with sure clearance

10am Swiggy exam successfully completed by remote access 👍👍👍👍👍 3/3 code done with all tests cases passed ✅✅ Contact for
+2
10am Swiggy exam successfully completed by remote access 👍👍👍👍👍 3/3 code done with all tests cases passed ✅✅ Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee ✅ Note - all company interview help available with sure clearance

26 April Infosys exam successfully completed by remote access 👍👍👍👍 5/5 slot done with all tests cases passed ✅✅ Contact f
+8
26 April Infosys exam successfully completed by remote access 👍👍👍👍 5/5 slot done with all tests cases passed ✅✅ Contact for placement exam @srksvk

Next code in 5 min

Everyone

Now share this group

https://t.me/coding_are Share this group ✅

import sys input = sys.stdin.readline def solve(N: int, C1: int, C2: int, C3: int, penalties: list) -> int: INF = 10**30 dp = [INF] * (N + 1) dp[0] = 0 for i in range(1, N + 1): dp[i] = min(dp[i], dp[i - 1] + C1 + penalties[i - 1]) if i >= 2: dp[i] = min(dp[i], dp[i - 2] + C2 + penalties[i - 2]) if i >= 3: dp[i] = min(dp[i], dp[i - 3] + C3 + penalties[i - 3]) return dp[N]

import java.util.*;

class Main {

public static int solve(int n,int k,int[] v,int[] w){

long sumA=0,sumB=0;
ArrayList<Integer> list=new ArrayList<>();

for(int i=0;i<n;i++){
if(v[i]==1)sumA+=w[i];
else sumB+=w[i];
list.add(w[i]);
}

if(sumA>sumB)return 0;

Collections.sort(list,Collections.reverseOrder());

int ops=0;

for(int x:list){
if(ops==k)break;
sumA+=x;
sumB-=x;
ops++;
if(sumA>sumB)return ops;
}

return -1;
}

public static void main(String[] args){
Scanner sc=new Scanner(System.in);

int n=sc.nextInt();
int k=sc.nextInt();

int[] v=new int[n];
for(int i=0;i<n;i++)v[i]=sc.nextInt();

int[] w=new int[n];
for(int i=0;i<n;i++)w[i]=sc.nextInt();

System.out.println(solve(n,k,v,w));
}
}

Go through function name

long long solve(int n,int low,int high,vector<int>& arr){ long long res=0,cur=0,MOD=1000000007; for(int i=0;i<n;i++){ if(arr[i]>=low && arr[i]<=high){ cur++; }else{ res=(res + (cur*(cur+1))/2)%MOD; cur=0; } } res=(res + (cur*(cur+1))/2)%MOD; return res; }