結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 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