1932B-ChayaCalendar.cpp 1932C-LRremainders.cpp 1933A-TurtlePuzzleRearrangeAndNegate.cpp 1933B-TurtleMathFastThreeTask.cpp 1933C-TurtleFingersCountTheValuesOfk.cpp 1933D-TurtleTenacityContinualMods.cpp 1934A-TooMinTooMax.cpp 1934B-YetAnotherCoinProblem.cpp 1935A-EntertainmentInMAC.cpp 1935B-Informatic...
b8c9b5b· Mar 5, 2024 HistoryHistory File metadata and controls Code Blame 22 lines (18 loc) · 466 Bytes Raw #include <cstdio> #include <vector> int main(){ long t; scanf("%ld", &t); while(t--){ long n, k; scanf("%ld %ld", &n, &k); std::vector<long> v(n, 0)...
ae583c8· Jan 19, 2024 HistoryHistory File metadata and controls Code Blame 21 lines (18 loc) · 494 Bytes Raw #include <cstdio> typedef long long ll; int main(){ ll t; scanf("%lld", &t); while(t--){ ll n; scanf("%lld", &n); ll cs(0), cnt(0); for(ll p = 0;...
( vehicle_prototype_schoolbus, obstacle_point, 90_degrees, 100, 0 ); REQUIRE( trg != nullptr ); trg->name = "crash bus"; WHEN( "A vehicle is placed in the vehicle's path such that it will hit a true part" ) { // we're travelling south east, so place another vehic...
be1155c· Sep 12, 2024 HistoryHistory File metadata and controls Code Blame 32 lines (27 loc) · 816 Bytes Raw #include <iostream> #include <vector> int main(){ std::ios_base::sync_with_stdio(false); long t; std::cin >> t; while(t--){ long n; std::cin >> n; std::vec...
:school: 🏫 :school_satchel: 🎒 :scorpion: 🦂 :scorpius: ♏ :scroll: 📜 :seat: 💺 :see_no_evil: 🙈 :seedling: 🌱 :shamrock: ☘️ :shaved_ice: 🍧 :sheep: 🐑 :shield: 🛡️ :shinto_shrine: ⛩️ :ship: 🚢 :stars: 🌠 :shopping_bags: 🛍️ :cake:...
Available add-ons Advanced Security Enterprise-grade security features GitHub Copilot Enterprise-grade AI features Premium Support Enterprise-grade 24/7 support Pricing Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of ...
1932B-ChayaCalendar.cpp 1932C-LRremainders.cpp 1933A-TurtlePuzzleRearrangeAndNegate.cpp 1933B-TurtleMathFastThreeTask.cpp 1933C-TurtleFingersCountTheValuesOfk.cpp 1933D-TurtleTenacityContinualMods.cpp 1934A-TooMinTooMax.cpp 1934B-YetAnotherCoinProblem.cpp 1935A-EntertainmentInMAC.cpp 1935B-Informatic...
1932B-ChayaCalendar.cpp 1932C-LRremainders.cpp 1933A-TurtlePuzzleRearrangeAndNegate.cpp 1933B-TurtleMathFastThreeTask.cpp 1933C-TurtleFingersCountTheValuesOfk.cpp 1933D-TurtleTenacityContinualMods.cpp 1934A-TooMinTooMax.cpp 1934B-YetAnotherCoinProblem.cpp 1935A-EntertainmentInMAC.cpp 1935B-Informatic...
2aabf4a· May 14, 2024 HistoryHistory File metadata and controls Code Blame 26 lines (21 loc) · 548 Bytes Raw #include <cstdio> #include <vector> int main(){ long t; scanf("%ld", &t); while(t--){ long n, k; scanf("%ld %ld", &n, &k); std::vector<long> v(31); ...