ADVERTISEMENT

San Beda too much for Arellano

Published Apr 17, 2022 02:55 pm

San Beda played like a well-oiled machine and routed Arellano, 82-68, to strengthen its bid for the top 2 spots as the NCAA Season 97 resumed on Easter Sunday, April 17 at the La Salle Green Hills Gym.

Photo from NCAA/GMA

The Red Lions shock troopers set the tone for the romp as Gab Cometa, Justine Sanchez, and Winston Ynot led the first half bench assault to break the game wide open and cruise to their fifth win in as many games.

Coming off a one-week break, San Beda used a balanced scoring with seven players finishing with at least eight points led by James Kwekuteye who had 14 points.

Cometa also added 11 while Ynot and Ralph Penuela had nine points apiece to lead the Red Lions’ bench players who were accountable for 35 of their 47 first half points.

San Beda, after trailing for the majority of the opening frame, also took advantage of the absence of Justin Arana who was forced to sit out the entire second quarter after committing three early fouls.

The Red Lions then unloaded a huge 15-4 run capped by a JV Gallego trey to build a 32-19 lead midway through the second frame.

“I’m so happy because every game, we need to get that dub and thank God the bench stepped up today, Gab, Tony, Justine Sanchez, everyone stepped up. Thank God that they did and we came up with the W,” said Kwekuteye who gave San Beda its biggest lead at 22, 64-42, midway through the third frame.

Arellano, however, refused to go down without a fight as it embarked to an 8-2 finishing kick to inch close 66-50 heading to the final frame.

Arana and Kalen Doromal then carried the fight for the Chiefs at the start of the payoff period to come within 11, 70-59, following an and-1 play from Troy Valencia.

San Beda retaliated with back-to-back baskets from Kwekuteye before Peter Alfaro sank a floater with 4:13 left in the game to douse the Arellano run.

Doromal finished with 16 points while Raymart Sablan contributed 10 markers for Arellano.

Arana, who was hampered by foul trouble and double-team schemes from the Red Lions, struggled to make an impact with just seven points on a 3-of-7 shooting from the field as the Chiefs slid down to a 2-4 record in the standings.

The Scores:

SAN BEDA 82 -- Kwekuteye 14, Cometa 11, Penuela 9, Ynot 9, Bahio 8, Amsali 8, Sanchez 8, Cuntapay 6, Alfaro 4, Gallego 3, Visser 2, Villejo 0, Abuda 0, Andrada 0, Jopia 0.

ARELLANO 68 -- Doromal 16, Sablan 10, Valencia 9, Cruz 8, Arana 7, Concepcion 7, Steinl 4, Sta. Ana 3, Abastillas 2, Caballero 2, Oliva 0.

Quarters: 17-15, 47-32, 66-52, 82-68.

Related Tags

San Beda Red Lions Arellano Chiefs
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.