結果

問題 No.188 HAPPY DAY
ユーザー ramendaisukiramendaisuki
提出日時 2020-03-15 03:35:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-03 01:43:39
合計ジャッジ時間 429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0