結果
問題 | No.188 HAPPY DAY |
ユーザー | momike1341 |
提出日時 | 2020-03-25 03:56:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 341 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-06-10 09:45:03 |
合計ジャッジ時間 | 777 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
cnt=0 for m in range(1,13): for ten in range(4): one=m-ten dey=ten*10+one if one>=0 and one<10 : if (m in[1,3,5,7,8,10,12]) and dey<=31: cnt=-~cnt elif(m==2) and dey<=28: cnt=-~cnt elif dey<=30: cnt=-~cnt print(cnt)