結果
問題 | No.721 Die tertia (ディエ・テルツィア) |
ユーザー | yoneoka1985 |
提出日時 | 2018-10-10 22:25:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,728 bytes |
コンパイル時間 | 3,900 ms |
コンパイル使用メモリ | 79,644 KB |
実行使用メモリ | 54,284 KB |
最終ジャッジ日時 | 2024-10-12 17:22:33 |
合計ジャッジ時間 | 7,686 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
41,108 KB |
testcase_01 | WA | - |
testcase_02 | AC | 132 ms
41,112 KB |
testcase_03 | AC | 130 ms
41,224 KB |
testcase_04 | AC | 111 ms
39,968 KB |
testcase_05 | AC | 128 ms
41,480 KB |
testcase_06 | AC | 127 ms
41,456 KB |
testcase_07 | AC | 127 ms
41,232 KB |
testcase_08 | AC | 112 ms
40,296 KB |
testcase_09 | AC | 126 ms
41,232 KB |
testcase_10 | AC | 112 ms
40,360 KB |
testcase_11 | AC | 116 ms
39,964 KB |
testcase_12 | AC | 130 ms
41,316 KB |
testcase_13 | AC | 129 ms
41,424 KB |
testcase_14 | AC | 129 ms
41,352 KB |
testcase_15 | AC | 126 ms
41,500 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 130 ms
41,264 KB |
testcase_19 | AC | 129 ms
41,464 KB |
testcase_20 | WA | - |
ソースコード
package yukicoder; import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class DieTeria { static Map<Integer, Integer> lastDay = new HashMap<Integer, Integer>() { { put(1, 31); put(2, 28); put(3, 31); put(4, 30); put(5, 31); put(6, 30); put(7, 31); put(8, 31); put(9, 30); put(10, 31); put(11, 30); put(12, 31); } }; // 日付をn日後に進める。 static int n = 2; public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); String s = sc.next(); int year = Integer.parseInt(s.split("/")[0]); int month = Integer.parseInt(s.split("/")[1]); int day = Integer.parseInt(s.split("/")[2]); // int year = 2000; // int month = 2; // int day = 27; if (isUruu(year)) { lastDay.put(2, 29); } if (isOverEndOfMonth(month, day + n)) { day = reCalucurateDay(month, day + n); if (isOverEndOfYear(year, month + 1)) { month = reCalucurateMonth(month); year++; } else { month++; } } else { day += n; } System.out.println(String.format("%04d/%02d/%02d", year, month, day)); } static boolean isUruu(int year) { if (year / 400 == 0) { return true; } else if (year / 100 == 0) { return false; } else if (year / 4 == 0) { return true; } return false; } static int reCalucurateDay(int month, int day) { return day - lastDay.get(month); } static int reCalucurateMonth(int month) { return 1; } static boolean isOverEndOfMonth(int month, int day) { return (day > lastDay.get(month)); } static boolean isOverEndOfYear(int year, int month) { return (month > 12); } }