結果
問題 | No.188 HAPPY DAY |
ユーザー | bigbear90560 |
提出日時 | 2015-07-03 22:04:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 209 ms / 1,000 ms |
コード長 | 791 bytes |
コンパイル時間 | 3,719 ms |
コンパイル使用メモリ | 76,376 KB |
実行使用メモリ | 57,844 KB |
最終ジャッジ日時 | 2024-06-09 20:09:35 |
合計ジャッジ時間 | 3,847 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ソースコード
import java.text.DateFormat; /** * No.188 HAPPY DAY */ public class HappyDay { public static void main(String[] args) { final int year = 2015; int tensPlace = 0; int onePlace = 0; int resNum = 0; String str = ""; DateFormat format = DateFormat.getDateInstance(); format.setLenient(false); for (int day=1; day<=31; day++) { tensPlace = (int) Math.floor(day / 10); onePlace = day % 10; str = year + "/" + (tensPlace + onePlace) + "/" + tensPlace + "" + onePlace; try { format.parse(str); resNum++; } catch (Exception ex) { // 何もしない } } System.out.println(resNum); } }