URI Solution 1428 Searching for Nessy - Solution in C++ | Ad Hoc
URI Online Judge Solution 1428 Searching for Nessy | Ad Hoc
URI Main Problem Link - 1428 Searching for Nessy - https://www.urionlinejudge.com.br/judge/en/problems/view/1428
Problem Name: URI Problem 1428 Searching for Nessy
Problem Number : URI Problem 1428 Searching for Nessy Solution
Online Judge : URI Online Judge Solution
Level: Ad Hoc
Solution Language : C plus plus
URI Solution 1428 Searching for Nessy Code in CPP:
#include <cstdio> int main(int argc, char const *argv[]) { int c, x, y; scanf("%i", &c); while(c--) { scanf("%i %i", &x, &y); printf("%i\n", (x / 3) * (y / 3)); } return 0; }
No comments:
Write commentsTo know more about the problem, give us your valuable commment. We'll try to help you. Thanks