結果
問題 | No.188 HAPPY DAY |
ユーザー | turner18_jp |
提出日時 | 2017-12-08 13:29:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-10 00:43:59 |
合計ジャッジ時間 | 549 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ソースコード
days_31 = [] days_30 = [] days_28 = [] month = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] b = [4, 6, 9, 11] count = 0 for i in range(1, 32): days_31.append(i) for i in range(1, 31): days_30.append(i) for i in range(1, 29): days_28.append(i) for i in month: if i == 2: for d in days_28: if d < 10: if i == d: count += 1 else: if i == int(str(d)[0]) + int(str(d)[1]): count += 1 elif i in b: for d in days_30: if d < 10: if i == d: count += 1 else: if i == int(str(d)[0]) + int(str(d)[1]): count += 1 else: for d in days_31: if d < 10: if i == d: count += 1 else: if i == int(str(d)[0]) + int(str(d)[1]): count += 1 print(count)