#include <bits/stdc++.h>

Problem Description

SCPC — TCET SHASTRA 2026 is a 12-hour competitive programming hackathon at Thakur College of Engineering & Technology, Mumbai.

Input Format

Event parameters (short):

  • Duration – 12 Hours
  • Team Size – 1-3 members
  • Mode – Hybrid

Output Format

Prizes

  • 1st Prize: ₹25,000 + Trophy
  • 2nd Prize: ₹15,000 + Trophy
  • 3rd Prize: ₹5,000 + Trophy
  • PLUS Gifts worth ₹15,000
  • Total: ₹60,000

Event Detail

Language:eventDetails.cpp
01#include <bits/stdc++.h>
02using namespace std;
03
04int main() {
05 // TCET SHASTRA 2026 - Event Details
06 string eventName = "TCET SHASTRA";
07 string tagline = "Caliber Isn't Claimed; It's Conquered";
08 string date = "13 March 2026";
09 string startTime = "8:30 AM";
10 int durationHours = 12;
11 string location = "TCET, Kandivali (E), Mumbai";
12 string college = "Thakur College of Engineering & Technology";
13 int prizePool = 60000;
14
15 cout << "Event: " << eventName << '\n'
16 << "Tagline: " << tagline << '\n'
17 << "Date: " << date << '\n'
18 << "Start Time: " << startTime << '\n'
19 << "Duration: " << durationHours << " Hours" << '\n'
20 << "Location: " << location << '\n'
21 << "College: " << college << '\n'
22 << "Prize Pool: ₹" << prizePool << '\n';
23
24 // Registration input (example)
25 string teamName;
26 string leaderEmail;
27 int members;
28 string track;
29
30 // cin >> teamName >> leaderEmail >> members >> track;
31
32 return 0;
33}
ReadyLines: 33 | Chars: 1011

Press Ctrl + Enter to submit