結果
問題 | No.188 HAPPY DAY |
ユーザー | sinofseven |
提出日時 | 2020-02-02 01:27:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 32 ms / 1,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-18 20:26:30 |
合計ジャッジ時間 | 626 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ソースコード
from datetime import date def is_valid(number: int) -> bool: ten = int(number/10) one = number % 10 num = ten + one if num < 1 or 12 < num: return False try: date(2015, num, ten * 10 + one) return True except Exception: return False count: int = 0 for i in range(31): if is_valid(i + 1): count += 1 print(count)