結果
問題 | No.188 HAPPY DAY |
ユーザー |
|
提出日時 | 2021-06-06 12:10:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 60 ms / 1,000 ms |
コード長 | 229 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 81,992 KB |
実行使用メモリ | 67,048 KB |
最終ジャッジ日時 | 2024-11-22 18:23:15 |
合計ジャッジ時間 | 1,017 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
import calendarcnt = 0for m in range(1, 13):for d1 in range(0, 10):d2 = m - d1if d2 < 0:continueif 10 * d2 + d1 <= calendar.monthrange(2015, m)[1]:cnt += 1print(cnt)