Day of the Programmer HackerRank Solution in C, C++, Java, Python

Marie invented a Time Machine and wants to test it by time-traveling to visit Russia on the Day of the Programmer (the 256th day of the year) during a year in the inclusive range from 1700 to 2700.

From 1700 to 1917, Russia’s official calendar was the Julian calendar; since 1919 they used the Gregorian calendar system. The transition from the Julian to Gregorian calendar system occurred in 1918, when the next day after January 31st was February 14th. This means that in 1918, February 14th was the 32nd day of the year in Russia.

In both calendar systems, February is the only month with a variable amount of days; it has 29 days during a leap year, and 28 days during all other years. In the Julian calendar, leap years are divisible by 4; in the Gregorian calendar, leap years are either of the following:

  • Divisible by 400.
  • Divisible by 4 and not divisible by 100.

Given a year,y, find the date of the 256th day of that year according to the official Russian calendar during that year. Then print it in the format dd.mm.yyyy, where dd is the two-digit day, mm is the two-digit month, and yyyy is y.

For example, the given  year= 1984. 1984 is divisible by 4, so it is a leap year. The 256th day of a leap year after 1918 is September 12, so the answer is 12.09.1984.

Function Description

Complete the dayOfProgrammer function in the editor below. It should return a string representing the date of the 256th day of the year given.

dayOfProgrammer has the following parameter(s):

  • year: an integer

Input Format

A single integer denoting year y.

Constraints

  • 1700 \le y \le 2700

Output Format

Print the full date of Day of the Programmer during year y in the format dd.mm.yyyy, where dd is the two-digit day, mm is the two-digit month, and yyyy is y.

Sample Input 0

2017

Sample Output 0

13.09.2017

Explanation 0

In the year  y= 2017, January has 31 days, February has 28 days, March has 31 days, April has 30 days, May has 31 days, June has 30 days, July has 31 days, and August has 31 days. When we sum the total number of days in the first eight months, we get 31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 = 243. Day of the Programmer is the 256th day, so then calculate 256 – 243 = 13 to determine that it falls on day 13 of the 9th month (September). We then print the full date in the specified format, which is 13.09.2017.

 

Day of the Programmer HackerRank Solution in C

#include <stdio.h>

int main(){
int y;
scanf("%d",&y);
if(y<1918){
if(y%4){
printf("13.09.%4d\n",y);
}
else{
printf("12.09.%4d\n",y);
}
}
else if(y== 1918){
printf("26.09.1918\n");
}
else{
if((y%400 == 0) || (y%4 == 0 && y%100)){
printf("12.09.%4d\n",y);
}
else{
printf("13.09.%4d\n",y);
}
}
return 0;
}

 

Day of the Programmer HackerRank Solution in C++

#include <bits/stdc++.h>

using namespace std;

int main(){
int y;
cin >> y;
if(y<1918){
if(y%4==0)cout<<"12.09."<<y<<endl;
else cout<<"13.09."<<y<<endl;
}
else if(y==1918){
cout<<"26.09."<<y<<endl;
}
else{
if(y%400==0){
cout<<"12.09."<<y<<endl;
}
else if(y%4==0&&y%100!=0){
cout<<"12.09."<<y<<endl;
}
else cout<<"13.09."<<y<<endl;
}
// your code goes here
return 0;
}

 

Day of the Programmer HackerRank Solution in Java

import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

public class Solution {

public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int y = in.nextInt();
// your code goes here

if(y>=1700 && y<=1917){

if(y%4==0){
System.out.println("12.09."+y);
}
else{
System.out.println("13.09."+y);
}
}

else{

if(y==1918){
System.out.println("26.09."+y);
}
else{
if(y%400==0){
System.out.println("12.09."+y);
}
else if(y%4==0 && y%100!=0){
System.out.println("12.09."+y);
}
else{
System.out.println("13.09."+y);
}
}
}
}
}

 

 

Day of the Programmer HackerRank Solution in Python

#!/bin/python

import sys


y = int(raw_input().strip())
if (y<=1917):
if(y%4==0):
print("12.09.%d"%y)
else:
print ("13.09.%d"%y)
elif (y>1918):
if (y%4==0 and y%100!=0) or (y%400==0):
print("12.09.%d"%y)
else:
print ("13.09.%d"%y)
else:
print("26.09.%d"%y)

 

Day of the Programmer HackerRank Solution in C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Solution {

static void Main(String[] args) {
int y = Convert.ToInt32(Console.ReadLine());
// your code goes here
if (y>=1919)
{
if(y%400 == 0 || y%4 == 0 && y%100 !=0) Console.WriteLine("12.09.{0}",y); else Console.WriteLine("13.09.{0}",y);
}
else
{
if (y<1918)
{
if(y%4 == 0) Console.WriteLine("12.09.{0}",y); else Console.WriteLine("13.09.{0}",y);
}
else Console.WriteLine("26.09.1918");
}
}
}

 

Attempt – Day of the Programmer HackerRank Challenge

Link – https://www.hackerrank.com/challenges/day-of-the-programmer

Next HackerRank Challenge Solution 

Link – https://exploringbits.com/bill-division-hackerrank-solution/

Leave a Comment