結果
| 問題 | No.188 HAPPY DAY | 
| コンテスト | |
| ユーザー |  splash9494 | 
| 提出日時 | 2020-05-02 02:08:55 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 158 bytes | 
| コンパイル時間 | 507 ms | 
| コンパイル使用メモリ | 82,304 KB | 
| 実行使用メモリ | 65,280 KB | 
| 最終ジャッジ日時 | 2024-12-25 22:52:45 | 
| 合計ジャッジ時間 | 777 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
import calendar
cnt = 0
for m in range(12):
    for d in calendar.monthrange(2015, m + 1):
        if m == d // 10 + d % 10:
            cnt += 1
print(cnt)
            
            
            
        