結果
問題 | No.188 HAPPY DAY |
ユーザー |
![]() |
提出日時 | 2019-07-29 18:09:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 248 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,240 KB |
最終ジャッジ日時 | 2024-07-02 15:24:28 |
合計ジャッジ時間 | 461 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
count=0for i in range(1,12):for j in range(1,31):if i==((j//10)+(j-10*(j//10))):count+=1if i==2 and j==28:breakelif j==30 and (i==4 or i==6 or i==9 or i==11):breakprint(count)