結果
問題 | No.721 Die tertia (ディエ・テルツィア) |
ユーザー |
|
提出日時 | 2021-03-29 16:15:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 384 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-29 10:06:03 |
合計ジャッジ時間 | 1,502 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 WA * 2 |
ソースコード
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 or Y % 100 == 0 or Y % 400 == 0: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))