結果
問題 |
No.721 Die tertia (ディエ・テルツィア)
|
ユーザー |
|
提出日時 | 2020-06-02 14:06:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-23 18:27:36 |
合計ジャッジ時間 | 1,360 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 WA * 3 |
ソースコード
dates = [int(i) for i in input().split("/")] months = [31,29,31,30,31,30,31,31,30,31,30,31] 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))