結果
問題 | No.188 HAPPY DAY |
ユーザー | ZUeUcFAQ |
提出日時 | 2017-02-04 16:33:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-06-09 21:45:10 |
合計ジャッジ時間 | 550 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
import calendar c = calendar.Calendar() q = 0 i = 1 while i <= 12: for d in c.itermonthdays(2015, i): if d != 0: if d < 10: d = "0" + str(d) l = [int(x) for x in list(str(d))] if i == int(l[0]) + int(l[1]): q += 1 i += 1 print(q)