結果
問題 | No.721 Die tertia (ディエ・テルツィア) |
ユーザー |
|
提出日時 | 2021-03-29 16:18:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 408 bytes |
コンパイル時間 | 317 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-29 10:06:05 |
合計ジャッジ時間 | 1,833 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 WA * 1 |
ソースコード
Y, M, D = map(int, input().split('/'))L = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]if Y % 4 == 0 and Y != 2100 and Y != 2200 and Y != 2300 and Y != 2400:L[2] = 29DD = D + 2if L[M] >= DD:print('{:0=2}/{:0=2}/{:0=2}'.format(Y, M, DD))elif L[M] < DD and M < 12:print('{:0=2}/{:0=2}/{:0=2}'.format(Y, M+1, DD-L[M]))else:print('{:0=2}/{:0=2}/{:0=2}'.format(Y+1, 1, DD-31))