結果
問題 | No.188 HAPPY DAY |
ユーザー | yumenomatayume |
提出日時 | 2020-03-21 00:17:30 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 316 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 66,684 KB |
最終ジャッジ日時 | 2024-12-15 22:08:25 |
合計ジャッジ時間 | 736 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ソースコード
count = 0 for month in range(1,13): if month == 2: end = 28 elif month in [4,6,9,11]: end = 30 else: end = 31 for day in range(1,end+1): if month == sum([i for i in str(day)]): count += 1 print(count)