結果
問題 | No.188 HAPPY DAY |
ユーザー | YutaroYamanaka |
提出日時 | 2018-01-30 12:12:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-06-10 01:03:28 |
合計ジャッジ時間 | 635 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
import calendar count = 0 num = [] for c in range(1, 13): for d in range(1, calendar.monthrange(2015,c)[1] + 1): num = [int(x) for x in list(str(d))] if d < 10: if c == num[0]: count += 1 num = [] else: if c == num[0] + num[1]: count += 1 num = [] else: num = [] print(count)