結果
問題 | No.188 HAPPY DAY |
ユーザー | ねず |
提出日時 | 2018-07-27 23:38:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 41 ms / 1,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 1,672 ms |
コンパイル使用メモリ | 73,168 KB |
実行使用メモリ | 36,860 KB |
最終ジャッジ日時 | 2024-07-05 05:36:13 |
合計ジャッジ時間 | 2,128 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ソースコード
import java.time.*; public class Main { public static void main(String[] args) throws Exception { int ans = 0; LocalDate start = LocalDate.of(2015, 1, 1); LocalDate end = LocalDate.of(2016, 1, 1); while (start.isBefore(end)) { int m = start.getMonthValue(); int d = start.getDayOfMonth(); //System.out.println(m+"月"+d+"日"); if (m == d / 10 + d % 10) ans++; start = start.plusDays(1); } System.out.println(ans); } }