結果
問題 | No.188 HAPPY DAY |
ユーザー |
![]() |
提出日時 | 2021-09-09 19:43:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 687 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-31 04:07:02 |
合計ジャッジ時間 | 819 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
ans = 0s1 = {2}s2 = {4, 6, 9, 11}s3 = {1, 3, 5, 7, 8, 10, 12}for i in range(1, 13):if i in s1:for j in range(1, 29):temp = 0k = str(j)for c in k:temp += int(c)if temp == i:ans += 1elif i in s2:for j in range(1, 31):temp = 0k = str(j)for c in k:temp += int(c)if temp == i:ans += 1else:for j in range(1, 32):temp = 0k = str(j)for c in k:temp += int(c)if temp == i:ans += 1print(ans)