結果

問題 No.188 HAPPY DAY
ユーザー momike1341
提出日時 2020-03-25 02:16:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2025-01-01 19:19:03
合計ジャッジ時間 862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

cnt=0
for m in range(1,13):

    for ten in range(10):
        one=m-ten
        dey=ten*10+one
        if one>=0 and one<10 :
            if (m in[1,3,5,7,8,10,12]) and dey<=31:
                cnt=-~cnt
            elif(m==2) and dey<=28:
                cnt=-~cnt
            elif dey<=30:
                cnt=-~cnt
            
print(cnt)
0