結果

問題 No.87 Advent Calendar Problem
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-03 18:17:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 1,177 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 37,028 KB
最終ジャッジ日時 2024-07-05 17:40:09
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,804 KB
testcase_01 AC 49 ms
36,816 KB
testcase_02 AC 50 ms
36,928 KB
testcase_03 AC 49 ms
36,516 KB
testcase_04 AC 50 ms
36,548 KB
testcase_05 AC 49 ms
36,676 KB
testcase_06 AC 49 ms
36,900 KB
testcase_07 AC 49 ms
36,680 KB
testcase_08 AC 49 ms
36,760 KB
testcase_09 AC 50 ms
36,820 KB
testcase_10 AC 49 ms
36,532 KB
testcase_11 AC 51 ms
36,720 KB
testcase_12 AC 49 ms
36,848 KB
testcase_13 AC 50 ms
36,544 KB
testcase_14 AC 50 ms
36,940 KB
testcase_15 AC 50 ms
36,696 KB
testcase_16 AC 49 ms
36,928 KB
testcase_17 AC 48 ms
37,028 KB
testcase_18 AC 49 ms
36,792 KB
testcase_19 AC 49 ms
36,736 KB
testcase_20 AC 51 ms
36,640 KB
testcase_21 AC 49 ms
36,712 KB
testcase_22 AC 49 ms
36,944 KB
testcase_23 AC 49 ms
36,872 KB
testcase_24 AC 49 ms
37,020 KB
testcase_25 AC 48 ms
36,860 KB
testcase_26 AC 49 ms
36,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

/**
 * ツェラーの公式だかってやつで年月日が分かると曜日が分かるやつ
 *
 */
public class No087 {

    private static final int WED = 3;

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            long y_end = Long.parseLong(br.readLine());
            long Y;
            int m = 7;
            int d = 23;
            long C;
            long ganma;
            long D = 0;
            long b = (y_end - 2014) / 400;
            long count = b * 57;

            for (long i = 2015 + b * 400; i <= y_end; i++) {
                Y = i % 100;
                C = i / 100;
                ganma = (5 * C) + C / 4;
                D = ((d + ((26 * (m + 1)) / 10 + Y + Y / 4 + ganma + 5)) % 7) + 1;
                if (D == WED) {
                    count++;
                }
            }

            System.out.println(count);
            br.close();
        } catch (Exception e) {

            System.err.println("Error:" + e.getMessage());
        }
    }

}
0