結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー pypypymipypypymi
提出日時 2022-02-17 17:48:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 86,784 KB
実行使用メモリ 71,748 KB
最終ジャッジ日時 2023-09-11 17:46:09
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
71,464 KB
testcase_01 AC 88 ms
71,464 KB
testcase_02 AC 88 ms
71,748 KB
testcase_03 AC 91 ms
71,488 KB
testcase_04 AC 89 ms
71,744 KB
testcase_05 AC 85 ms
71,340 KB
testcase_06 AC 85 ms
71,336 KB
testcase_07 AC 86 ms
71,400 KB
testcase_08 AC 86 ms
71,452 KB
testcase_09 AC 87 ms
71,664 KB
testcase_10 AC 88 ms
71,624 KB
testcase_11 AC 85 ms
71,520 KB
testcase_12 AC 84 ms
71,400 KB
testcase_13 AC 86 ms
71,396 KB
testcase_14 AC 85 ms
71,448 KB
testcase_15 AC 85 ms
71,608 KB
testcase_16 AC 86 ms
71,532 KB
testcase_17 AC 85 ms
71,720 KB
testcase_18 AC 88 ms
71,736 KB
testcase_19 AC 87 ms
71,500 KB
testcase_20 AC 85 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime
s1,s2,s3 = map(int,input().split("/"))
a = datetime.datetime(s1,s2,s3)
b = datetime.timedelta(days=2)
c = a+b
print(c.strftime("%Y/%m/%d"))
0