結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー Haruki0804SHaruki0804S
提出日時 2018-10-20 17:36:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-29 19:49:28
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S=list(input())

y=int(S[0]+S[1]+S[2]+S[3])
m=int(S[5]+S[6])
d=int(S[8]+S[9])

d=d+2

if( m==2):
    #閏年
    if(y% 4 ==0 ):
        if(y % 100!=0):
           if(d>29):
              d=d-29
              m=m+1
              y=y
           else:
             d=d
             m=m
             y=y
        elif(y % 100 ==0 and y % 400 ==0):
            if(d>29):
               d=d-29
               m=m+1
               y=y
            else:
               d=d
               m=m
               y=y
        else:
            if(d>28):
               d=d-28
               m=m+1
               y=y
            else:
               d=d
               m=m
               y=y
    else:
        
        if(d>28):
           d=d-28
           m=m+1
           y=y
        else:
           d=d
           m=m
           y=y

elif( m==4 or m==6 or m==9 or m==11):
    if(d>30):
        d=d-30
        m=m+1
        y=y

    else:
        d=d
        m=m+1
        y=y

elif( m==12):
    if(d>31):
       d=d-31
       m=1
       y=y+1
    else:
       d=d
       m=m
       y=y
else:
    if(d>31):
       d=d-31
       m=m+1
       y=y
    else:
       d=d
       m=m
       y=y

print(y,end='')
print('/',end='')
if(m<10):
   print(0,end='')
   print(m,end='')
else:
   print(m,end='')

print('/',end='')

if(d<10):
   print(0,end='')
   print(d)
else:
   print(d)


0