結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー miya145592miya145592
提出日時 2023-05-03 00:03:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 71,772 KB
最終ジャッジ日時 2024-11-21 11:19:15
合計ジャッジ時間 2,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,956 KB
testcase_01 AC 67 ms
70,532 KB
testcase_02 AC 65 ms
70,948 KB
testcase_03 AC 70 ms
71,696 KB
testcase_04 AC 71 ms
70,324 KB
testcase_05 AC 66 ms
71,772 KB
testcase_06 AC 67 ms
70,796 KB
testcase_07 AC 70 ms
70,980 KB
testcase_08 AC 69 ms
70,824 KB
testcase_09 AC 69 ms
71,212 KB
testcase_10 AC 69 ms
69,956 KB
testcase_11 AC 69 ms
70,568 KB
testcase_12 AC 66 ms
70,348 KB
testcase_13 AC 65 ms
71,736 KB
testcase_14 AC 68 ms
70,936 KB
testcase_15 AC 69 ms
70,728 KB
testcase_16 AC 70 ms
70,340 KB
testcase_17 AC 70 ms
70,924 KB
testcase_18 AC 66 ms
71,224 KB
testcase_19 AC 66 ms
70,936 KB
testcase_20 AC 67 ms
71,352 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