Skip to content
Programming101
Programming101

Learn everything about programming

  • Home
  • CS Subjects
    • IoT – Internet of Things
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programming101
Programming101

Learn everything about programming

HackerEarth Roy and Profile Picture problem solution

YASH PAL, 31 July 2024
In this HackerEarth Roy and Profile Picture problem solution, Roy wants to change his profile picture on Facebook. Now Facebook has some restrictions over the dimension of pictures that we can upload.
The minimum dimension of the picture can be L x L, where L is the length of the side of the square.
Now Roy has N photos of various dimensions.
Dimension of a photo is denoted as W x H
where W – width of the photo and H – Height of the photo
When any photo is uploaded following events may occur:
[1] If any of the width or height is less than L, user is prompted to upload another one. Print “UPLOAD ANOTHER” in this case.
[2] If width and height, both are large enough and
(a) if the photo is already square then it is accepted. Print “ACCEPTED” in this case.
(b) else user is prompted to crop it. Print “CROP IT” in this case.
Given L, N, W and H as input, print appropriate text as output.
hackerEarth Roy and Profile Picture problem solution

HackerEarth Roy and Profile Picture problem solution.

def roy_and_profile_pic():
L = input()
N = input()
for t in xrange(N):
W,H = map(int,raw_input().split())
if W < L or H < L:
print 'UPLOAD ANOTHER'
else:
if W == H:
print 'ACCEPTED'
else:
print 'CROP IT'
roy_and_profile_pic()

second solution

l=input()
n=input()
for i in range(n):
x=raw_input()
y=x.split()
w=int(y[0])
h=int(y[1])
if w<l or h<l: print "UPLOAD ANOTHER"
elif w==h: print "ACCEPTED"
else: print "CROP IT"

coding problems

Post navigation

Previous post
Next post
  • How AI Is Revolutionizing Personalized Learning in Schools
  • GTA 5 is the Game of the Year for 2024 and 2025
  • Hackerrank Day 5 loops 30 days of code solution
  • Hackerrank Day 6 Lets Review 30 days of code solution
  • Hackerrank Day 14 scope 30 days of code solution
©2025 Programming101 | WordPress Theme by SuperbThemes