結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー HAGI_TARO
提出日時 2021-09-19 09:29:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 55,872 KB
最終ジャッジ日時 2024-07-01 11:42:51
合計ジャッジ時間 1,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime
Y,M,D = map(int,input().split("/"))
x = datetime.date(Y,M,D)
print(x + datetime.timedelta(days=2))
0