結果
| 問題 |
No.721 Die tertia (ディエ・テルツィア)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-02 14:07:59 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 434 bytes |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-23 18:27:38 |
| 合計ジャッジ時間 | 1,327 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 WA * 2 |
ソースコード
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:
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))