結果

問題 No.87 Advent Calendar Problem
ユーザー GrenacheGrenache
提出日時 2015-11-22 17:40:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,140 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-13 17:11:21
合計ジャッジ時間 8,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,216 KB
testcase_01 AC 135 ms
54,300 KB
testcase_02 AC 130 ms
54,120 KB
testcase_03 AC 135 ms
54,032 KB
testcase_04 AC 133 ms
53,968 KB
testcase_05 AC 131 ms
54,004 KB
testcase_06 AC 133 ms
54,044 KB
testcase_07 AC 132 ms
54,100 KB
testcase_08 AC 132 ms
54,220 KB
testcase_09 AC 133 ms
53,936 KB
testcase_10 AC 132 ms
54,108 KB
testcase_11 AC 134 ms
54,220 KB
testcase_12 AC 136 ms
53,720 KB
testcase_13 AC 132 ms
54,228 KB
testcase_14 AC 133 ms
54,112 KB
testcase_15 AC 134 ms
54,188 KB
testcase_16 AC 132 ms
53,880 KB
testcase_17 AC 134 ms
54,004 KB
testcase_18 AC 133 ms
53,960 KB
testcase_19 AC 132 ms
54,068 KB
testcase_20 AC 133 ms
53,948 KB
testcase_21 AC 130 ms
54,052 KB
testcase_22 AC 133 ms
54,280 KB
testcase_23 AC 134 ms
54,072 KB
testcase_24 AC 134 ms
54,244 KB
testcase_25 AC 133 ms
53,948 KB
testcase_26 AC 133 ms
53,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder87 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long n = sc.nextLong();

        int ret = 0;
        long tmp = 0;
        for (long i = 2015; i <= Math.min(2400, n); i++) {
        	if ((i % 4 == 0 && i % 100 != 0) || (i % 4 == 0 && i % 400 == 0)) {
        		tmp += 2;
        	} else {
        		tmp += 1;
        	}

        	if (tmp % 7 == 0) {
        		ret++;
        	}
        }

        if (n > 2400) {
        	int[] wed = new int[400 + 1];
        	for (long i = 2401; i <= 2800; i++) {
            	if ((i % 4 == 0 && i % 100 != 0) || (i % 4 == 0 && i % 400 == 0)) {
            		tmp += 2;
            	} else {
            		tmp += 1;
            	}

            	if (tmp % 7 == 0) {
            		wed[(int)(i - 2400)] = wed[(int)(i - 1 - 2400)] + 1;
            	} else {
            		wed[(int)(i - 2400)] = wed[(int)(i - 1 - 2400)];
            	}
        	}

        	ret += (n - 2400) / 400 * wed[400] + wed[(int)((n - 2400) % 400)];
        }

        System.out.println(ret);

        sc.close();
    }
}
0