結果

問題 No.87 Advent Calendar Problem
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-03 18:12:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,172 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 37,392 KB
最終ジャッジ日時 2024-07-05 17:39:56
合計ジャッジ時間 5,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 48 ms
37,008 KB
testcase_03 AC 48 ms
36,876 KB
testcase_04 AC 48 ms
37,088 KB
testcase_05 AC 49 ms
37,004 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
36,860 KB
testcase_17 AC 48 ms
36,848 KB
testcase_18 AC 47 ms
37,012 KB
testcase_19 AC 47 ms
36,764 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 49 ms
36,808 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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));
            int y_end = Integer.parseInt(br.readLine());
            int Y;
            int m = 7;
            int d = 23;
            int C;
            int ganma;
            int D = 0;
            int b = (y_end - 2014) / 400;
            long count = b * 57;

            for (int 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