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