結果
問題 | No.188 HAPPY DAY |
ユーザー | yumenomatayume |
提出日時 | 2020-03-21 00:17:30 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 1,566 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 64,896 KB |
最終ジャッジ日時 | 2024-05-09 10:05:24 |
合計ジャッジ時間 | 974 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ソースコード
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)