using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ int[] returnDate = Array.ConvertAll(Console.ReadLine().Split(' '), Int32.Parse); int[] dueDate = Array.ConvertAll(Console.ReadLine().Split(' '), Int32.Parse); DateTime _returnDate = new DateTime(returnDate[2], returnDate[1], returnDate[0]); DateTime _dueDate = new DateTime(dueDate[2], dueDate[1], dueDate[0]); int outputText = 0; if (_returnDate > _dueDate) { if (_returnDate.Year == _dueDate.Year) { if (_returnDate.Month == _dueDate.Month) { int day = _returnDate.Day - _dueDate.Day; outputText = day * 15; } else {
using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ int[] returnDate = Array.ConvertAll(Console.ReadLine().Split(' '), Int32.Parse); int[] dueDate = Array.ConvertAll(Console.ReadLine().Split(' '), Int32.Parse);
int day = returnDate[0] - dueDate[0]; int month = returnDate[1] - dueDate[1]; int year = returnDate[2] - dueDate[2]; int outputText = year > 0 ? 10000 : year == 0 && month > 0 ? month * 500 : year == 0 && day > 0 ? day * 15 : 0; Console.WriteLine(outputText); } }