結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー Takayuki HirotaTakayuki Hirota
提出日時 2020-12-25 11:28:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-09-22 04:33:54
合計ジャッジ時間 2,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,072 KB
testcase_01 AC 35 ms
52,072 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 35 ms
53,152 KB
testcase_04 AC 37 ms
53,484 KB
testcase_05 AC 36 ms
52,464 KB
testcase_06 AC 36 ms
52,188 KB
testcase_07 AC 36 ms
52,368 KB
testcase_08 AC 36 ms
52,928 KB
testcase_09 AC 37 ms
52,212 KB
testcase_10 AC 36 ms
53,576 KB
testcase_11 AC 36 ms
53,744 KB
testcase_12 AC 37 ms
52,320 KB
testcase_13 AC 36 ms
52,564 KB
testcase_14 AC 36 ms
52,576 KB
testcase_15 AC 36 ms
52,700 KB
testcase_16 AC 36 ms
52,060 KB
testcase_17 AC 36 ms
52,564 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

y,m,d=map(int,input().split('/'))
days={1:31,2:28,3:31,4:30,5:31,6:30,7:31,8:31,9:30,10:31,11:30,12:31}
if y%4==0:
	days[2]=29
if d+2>days[m]:
	if m==12:
		y+=1
		m=1
		d-=29
	else:
		d+=2-days[m] 
		m+=1
else:
	d+=2
print('{:04}/{:02}/{:02}'.format(y,m,d))
0