結果
| 問題 | No.188 HAPPY DAY |
| コンテスト | |
| ユーザー |
G_Anteater
|
| 提出日時 | 2020-01-10 22:26:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 1,000 ms |
| コード長 | 211 bytes |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,368 KB |
| 最終ジャッジ日時 | 2024-11-23 22:18:52 |
| 合計ジャッジ時間 | 770 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
month = [31,28,31,30,31,30,31,31,30,31,30,31]
cnt = 0
for i in range(12):
d = month[i]
for j in range(1, d +1):
d1, d2 = divmod(j, 10)
if i +1 == d1 + d2:
cnt += 1
print(cnt)
G_Anteater