結果

問題 No.188 HAPPY DAY
ユーザー kotatsukotatsu
提出日時 2023-08-11 21:44:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-29 12:36:31
合計ジャッジ時間 508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

day1 = list(range(1, 32))
day2 = list(range(1, 31))
day3 = list(range(1, 29))

l = 0
for i in range(1, 13):
    if(i == 1 and 3 and 5 and 7 and 8 and 10 and 12) :
        for s in day1:
            s = f"{s:02}"
            A = int(s)//10
            B = int(s)%10
            if A+B == i:
                l = l+1
    elif(i == 4 and 6 and 9 and 11):
        for s in day2:
            s = f"{s:02}"
            A = int(s)//10
            B = int(s)%10
            if A+B == i:
                l = l+1
    else:
        for s in day3:
            s = f"{s:02}"
            A = int(s)//10
            B = int(s)%10
            if A+B == i:
                l = l+1
print(l)

0