結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-19 09:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 86,836 KB
実行使用メモリ 71,760 KB
最終ジャッジ日時 2023-09-14 03:57:58
合計ジャッジ時間 3,306 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
71,760 KB
testcase_01 AC 89 ms
71,616 KB
testcase_02 AC 89 ms
71,572 KB
testcase_03 AC 89 ms
71,420 KB
testcase_04 AC 89 ms
71,608 KB
testcase_05 AC 89 ms
71,600 KB
testcase_06 AC 88 ms
71,540 KB
testcase_07 AC 89 ms
71,508 KB
testcase_08 AC 87 ms
71,516 KB
testcase_09 AC 89 ms
71,568 KB
testcase_10 AC 89 ms
71,388 KB
testcase_11 AC 88 ms
71,676 KB
testcase_12 AC 87 ms
71,608 KB
testcase_13 AC 87 ms
71,600 KB
testcase_14 AC 88 ms
71,464 KB
testcase_15 AC 88 ms
71,528 KB
testcase_16 AC 88 ms
71,608 KB
testcase_17 AC 90 ms
71,604 KB
testcase_18 AC 89 ms
71,496 KB
testcase_19 AC 90 ms
71,520 KB
testcase_20 AC 89 ms
71,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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