結果
問題 | No.188 HAPPY DAY |
ユーザー | R N |
提出日時 | 2020-07-21 18:48:17 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 597 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-09 16:40:16 |
合計ジャッジ時間 | 613 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ソースコード
# coding:utf-8 import datetime as dt calender = dt.datetime(2015, 1, 1) print(calender) year = 365 ans = 0 for i in range(year-1): calender += dt.timedelta(days=1) m = calender.month d = calender.day if d < 10: if m == 0 + d: ans += 1 else: continue elif d < 20: if m == 1 + d: ans += 1 else: continue elif d < 30: if m == 2 + d: ans += 1 else: continue else: if m == 3 + d: ans += 1 else: continue print(ans)