結果

問題 No.188 HAPPY DAY
ユーザー SchneeSchnee
提出日時 2022-09-08 06:27:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-23 23:25:05
合計ジャッジ時間 759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

date = datetime.datetime(year=2015, month=1, day=1)
c=0
while date.year==2015:
    if date.month == (date.day//10+date.day%10):
        c+=1
    date += datetime.timedelta(days=1)
print(c)
0