結果
| 問題 | 
                            No.188 HAPPY DAY
                             | 
                    
| コンテスト | |
| ユーザー | 
                             ramendaisuki
                         | 
                    
| 提出日時 | 2020-03-15 03:35:51 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 522 bytes | 
| コンパイル時間 | 80 ms | 
| コンパイル使用メモリ | 12,800 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-11-23 21:47:26 | 
| 合計ジャッジ時間 | 448 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
months = [month for month in range(0,13)]
days_tens = [day_tens for day_tens in range(0,4)]
days_ones = [day_ones for day_ones in range(0,10)]
count = 0
for month in months:
    for day_tens in days_tens:
        for day_ones in days_ones:
            if day_tens == 3:
                if day_ones >= 2:
                    pass
            elif month == 4:
                if day_tens == 3 and day_ones == 1:
                    pass
            elif month == day_tens + day_ones:
                count += 1
print(count)
            
            
            
        
            
ramendaisuki