/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 0ms 284.0 KiB
#3 Accepted 0ms 540.0 KiB
#4 Accepted 0ms 340.0 KiB
#5 Accepted 1ms 336.0 KiB
#6 Accepted 0ms 560.0 KiB

Code

/**
 * ! @Author : - Mohammed Murshedur Rahman
 * ? Date & Time : - 2024-11-05 20:33
 * * BANGLADESH : - SYLHET
 */

#include <stdio.h>

void solve()
{
    int h,w;
    scanf("%d %d",&h,&w);
    int a[w];
    for (int i = 0; i < w; i++)
    {
        a[i]= (h-(i+1)+1)*(w-(i+1)+1);
    }
    int total=0;
    for (int i = 0; i < w; i++)
    {
        total+=a[i];
    }
    printf("%d\n",total);

}

int main()
{
    solve();
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1121 Square Counting Challenge
Contest
Brain Booster #7
Language
C11 (GCC 13.2.0)
Submit At
2024-11-05 14:45:32
Judged At
2024-11-05 14:45:32
Judged By
Score
100
Total Time
1ms
Peak Memory
560.0 KiB