結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー ABKZABKZ
提出日時 2021-08-11 19:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 71,916 KB
最終ジャッジ日時 2024-09-25 05:36:53
合計ジャッジ時間 2,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,044 KB
testcase_01 AC 68 ms
70,872 KB
testcase_02 AC 70 ms
70,024 KB
testcase_03 AC 69 ms
70,532 KB
testcase_04 AC 67 ms
69,820 KB
testcase_05 AC 72 ms
70,320 KB
testcase_06 AC 66 ms
71,916 KB
testcase_07 AC 67 ms
71,216 KB
testcase_08 AC 67 ms
71,516 KB
testcase_09 AC 67 ms
70,932 KB
testcase_10 AC 70 ms
71,304 KB
testcase_11 AC 66 ms
70,704 KB
testcase_12 AC 66 ms
70,972 KB
testcase_13 AC 66 ms
70,356 KB
testcase_14 AC 70 ms
70,648 KB
testcase_15 AC 69 ms
69,952 KB
testcase_16 AC 67 ms
71,076 KB
testcase_17 AC 65 ms
70,028 KB
testcase_18 AC 66 ms
71,188 KB
testcase_19 AC 65 ms
70,816 KB
testcase_20 AC 67 ms
71,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

d = datetime.datetime.strptime(input(), "%Y/%m/%d")
ans = d + datetime.timedelta(days=2)

print(ans.strftime("%Y/%m/%d"))
0