結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー knt3110knt3110
提出日時 2019-02-11 15:49:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-18 11:40:34
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def uru(year):
    if (year % 4 == 0):
        if (year % 100 == 0):
            if (year % 400 == 0):
                return True
            else:
                return False
        else:
            return True
    else:
        return False

s = input()
ymd = s.split('/')
year = int(ymd[0])
month = int(ymd[1])
day = int(ymd[2])

day_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
day = day + 2

if (month == 2):
    if (uru(year)):
        if (day > day_in_month[2-1]+1):
            day = day - (day_in_month[month-1]+1)
            month += 1
    else:
        if (day > day_in_month[2-1]):
            day = day - day_in_month[month-1]
            month += 1
else:
    if (day > day_in_month[month-1]):
        day = day - day_in_month[month-1]
        month += 1
        if (month > 12):
            month = 1
            year += 1

print(str(year) + '/' + str(month).zfill(2) + '/' + str(day).zfill(2))
0