結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー miya145592miya145592
提出日時 2023-05-03 00:03:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 72,052 KB
最終ジャッジ日時 2024-05-01 08:17:30
合計ジャッジ時間 2,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,620 KB
testcase_01 AC 68 ms
70,300 KB
testcase_02 AC 67 ms
71,624 KB
testcase_03 AC 67 ms
70,404 KB
testcase_04 AC 70 ms
70,504 KB
testcase_05 AC 67 ms
70,884 KB
testcase_06 AC 67 ms
71,544 KB
testcase_07 AC 67 ms
70,448 KB
testcase_08 AC 68 ms
71,136 KB
testcase_09 AC 67 ms
70,828 KB
testcase_10 AC 68 ms
70,940 KB
testcase_11 AC 68 ms
70,904 KB
testcase_12 AC 67 ms
70,456 KB
testcase_13 AC 67 ms
70,720 KB
testcase_14 AC 66 ms
70,216 KB
testcase_15 AC 68 ms
71,744 KB
testcase_16 AC 68 ms
70,304 KB
testcase_17 AC 67 ms
70,844 KB
testcase_18 AC 68 ms
70,872 KB
testcase_19 AC 67 ms
71,416 KB
testcase_20 AC 67 ms
72,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime
YMD = datetime.datetime.strptime(input(), '%Y/%m/%d')
ans = YMD + datetime.timedelta(days=2)
print(ans.strftime('%Y/%m/%d'))
0