結果
問題 |
No.721 Die tertia (ディエ・テルツィア)
|
ユーザー |
|
提出日時 | 2020-06-02 14:09:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 477 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-23 18:27:54 |
合計ジャッジ時間 | 1,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
dates = [int(i) for i in input().split("/")] months = [31,28,31,30,31,30,31,31,30,31,30,31] if dates[0]%4==0 and (dates[0]%100 != 0 or dates[0]%400==0): months[1] = 29 dates[2] += 2 if dates[2] > months[dates[1] - 1]: dates[1], dates[2] = dates[1] + dates[2]//months[dates[1] - 1], dates[2] - months[dates[1] - 1] if dates[1] > 12: dates[1] = dates[1] - 12 dates[0] += 1 dates = [str(i) if len(str(i)) >= 2 else "0"+str(i) for i in dates] print("/".join(dates))