結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-19 09:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 55,360 KB
最終ジャッジ日時 2024-07-01 11:45:22
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,496 KB
testcase_01 AC 42 ms
53,540 KB
testcase_02 AC 41 ms
53,660 KB
testcase_03 AC 42 ms
55,360 KB
testcase_04 AC 42 ms
53,948 KB
testcase_05 AC 41 ms
53,516 KB
testcase_06 AC 42 ms
53,868 KB
testcase_07 AC 40 ms
55,056 KB
testcase_08 AC 40 ms
53,736 KB
testcase_09 AC 45 ms
54,632 KB
testcase_10 AC 41 ms
54,636 KB
testcase_11 AC 41 ms
53,936 KB
testcase_12 AC 42 ms
53,480 KB
testcase_13 AC 42 ms
54,436 KB
testcase_14 AC 41 ms
54,600 KB
testcase_15 AC 41 ms
53,284 KB
testcase_16 AC 41 ms
54,364 KB
testcase_17 AC 41 ms
54,280 KB
testcase_18 AC 41 ms
54,744 KB
testcase_19 AC 42 ms
54,288 KB
testcase_20 AC 41 ms
53,932 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