CCC '00 J1 - Calendar

View as PDF

Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2000 Stage 1, Junior #1

Write a program to print out a calendar for a particular month given the day on which the first of the month occurs together with the number of days in the month.

Your program should take as input an integer representing the day of the week on which the month begins (1 for Sunday, 2 for Monday, …, 7 for Saturday), and an integer which is the number of days in the month (between 28 and 31 inclusive). Your program should print the appropriate calendar for the month. You can assume that all input data will be valid.

DMOJ-specific note: None of the output lines should contain trailing whitespace. The last line must end with a newline.

Sample Input

3 30

Sample Output

Sun Mon Tue Wed Thr Fri Sat
          1   2   3   4   5
  6   7   8   9  10  11  12
 13  14  15  16  17  18  19
 20  21  22  23  24  25  26
 27  28  29  30

Comments


  • 0
    PhoenixCoolIce  commented on Feb. 15, 2024, 1:07 a.m.

    I'm going to assume that I can just brute force everything


  • 0
    leoliu93233  commented on Feb. 11, 2024, 1:19 a.m.

    the sequel to this whitespace hell https://dmoj.ca/problem/ccc02j1 also this and j2 should switch places


  • 2
    Kiki_Delfin  commented on Feb. 8, 2024, 8:19 p.m.

    this is the hardest j1


    • 0
      HisMonDon  commented on March 13, 2024, 4:29 p.m.

      i agree


  • 23
    jerrycui07  commented on Sept. 24, 2023, 6:28 p.m.

    This comment is a promise that one day I will buy the DMOJ website and delete the whitespace requirement on this question. It has caused me too much pain.


    • 0
      R_G  commented on Jan. 26, 2024, 10:24 p.m.

      fax


    • 1
      HisMonDon  commented on Jan. 1, 2024, 1:40 a.m.

      real


  • 10
    David69420  commented on Dec. 22, 2022, 2:28 p.m.

    Guys if you are coding it in python 3, just add a .rstrip() thing in the end, it would save you a lot of time, basically removes an extra space


  • 25
    Tommy_Shan  commented on Aug. 1, 2021, 7:09 p.m.

    Hardest J1, even harder than S1 in the same year.


  • 34
    EEEEEE_URRRRR  commented on June 11, 2021, 9:51 p.m. edited

    Just a heads up, it's "Thr", not "Thu".


  • 0
    modaser123  commented on Jan. 19, 2021, 2:23 a.m.

    Can you see other's responses on this website? I'm new


    • 9
      Hubie  commented on Jan. 19, 2021, 4:08 a.m.

      Yes, but only after solving the question


  • 13
    m2a  commented on Jan. 14, 2021, 7:43 p.m.

    The whitespaces are killing me!


  • 0
    Dav_Did  commented on Nov. 28, 2020, 12:57 a.m.

    Is it possible to import Pandas to make a data frame?


    • 16
      Kirito  commented on Nov. 28, 2020, 10:13 p.m.

      We (much like the CCC and most online judges) do not support non-standard libraries unless the problem explicitly states otherwise.

      This problem can be solved using simple loops and if statements, you are likely severely over complicating it.


  • 16
    Henry_Z  commented on July 20, 2020, 11:07 p.m.

    Why is this a J1 question. It's so difficult. especially with an 11.0% success rate of 2020 July the 20th.


    • 19
      Kirito  commented on July 22, 2020, 1:32 a.m.

      AC rates are not the best indicator of difficulty, as there are some IOI problems with higher AC rates (and implying this problem is harder than those is a bit of a stretch).

      The low AC rate is a result of a mass rejudge that happened some time back, where we replaced the old checker with one that was far more strict about whitespacing (as that is the main difficulty of this problem), so many submissions that were previously deemed correct were rejudged as incorrect.

      As for its difficulty relative to other J1s, this problem is (IMHO) harder than the majority of J1s from 2010-2020, but it does still fall under Waterloo's description of what a J1 should be.


  • 4
    Orion222  commented on July 13, 2020, 10:12 p.m.

    tf u mean presentation error its exactly the output given


    • 7
      Kirito  commented on July 22, 2020, 1:35 a.m.

      Reiterating the bolded line in the statement: DMOJ-specific note: None of the output lines should contain trailing whitespace. The last line must end with a newline.

      This would include trailing newlines (i.e. unnecessary newlines at the end of input).


  • 18
    IanHu  commented on Dec. 29, 2018, 4:01 p.m. edited

    Important tip if you get Presentation error: None of the output lines should contain trailing whitespace. The last line must end with a newline.


  • 18
    ACCount_Nine38  commented on Sept. 8, 2018, 4:18 a.m. edit 4

    harder one for a J1...


  • 14
    andisong  commented on Sept. 5, 2018, 10:04 p.m.

    it took me two hours to do this


    • 5
      python6645  commented on Nov. 30, 2020, 1:20 a.m. edited

      It took me almost an entire week


  • 1
    WaterWheel  commented on Feb. 20, 2018, 4:38 a.m.

    Works on PEG judge for all cases but doesn't here. I suppose it is due to whitespace?


    • 4
      injust  commented on Feb. 20, 2018, 5:54 a.m.

      DMOJ-specific note: None of the output lines should contain trailing whitespace. The last line must end with a newline.


      • -3
        Laurak121  commented on Aug. 25, 2018, 1:26 p.m.

        what's whitespace?


      • 1
        WaterWheel  commented on Feb. 21, 2018, 2:53 a.m. edited

        Thanks