結果
問題 | No.188 HAPPY DAY |
ユーザー |
![]() |
提出日時 | 2018-02-01 16:46:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 304 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-12-31 06:50:27 |
合計ジャッジ時間 | 637 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
import calendar as camonthend = []count = 0for i in range(12):tmp = ca.monthrange(2015, i+1)monthend.append(tmp[1])# print(monthend)for i in range(12):for j in range(monthend[i]):j = j+1if (i+1) == int(j/10) + j%10:count = count + 1print(count)