結果

問題 No.87 Advent Calendar Problem
ユーザー tanzakutanzaku
提出日時 2014-12-07 02:32:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-06-11 16:01:26
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,144 KB
testcase_01 AC 130 ms
40,908 KB
testcase_02 AC 128 ms
41,560 KB
testcase_03 AC 128 ms
41,168 KB
testcase_04 AC 130 ms
41,172 KB
testcase_05 AC 130 ms
41,088 KB
testcase_06 AC 129 ms
41,212 KB
testcase_07 AC 131 ms
41,036 KB
testcase_08 AC 130 ms
41,152 KB
testcase_09 AC 129 ms
41,316 KB
testcase_10 AC 131 ms
41,136 KB
testcase_11 AC 128 ms
41,516 KB
testcase_12 AC 131 ms
41,260 KB
testcase_13 AC 116 ms
40,028 KB
testcase_14 AC 130 ms
41,488 KB
testcase_15 AC 129 ms
41,108 KB
testcase_16 AC 116 ms
40,060 KB
testcase_17 AC 132 ms
41,432 KB
testcase_18 AC 132 ms
41,472 KB
testcase_19 AC 130 ms
41,316 KB
testcase_20 AC 131 ms
41,216 KB
testcase_21 AC 128 ms
41,224 KB
testcase_22 AC 128 ms
41,132 KB
testcase_23 AC 120 ms
40,660 KB
testcase_24 AC 128 ms
41,272 KB
testcase_25 AC 117 ms
40,108 KB
testcase_26 AC 127 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
	
	static boolean isLeapYear(long y) {
		return y % 4 == 0 && (y % 100 != 0 || y % 400 == 0);
	}
	
	static long func(long n) {
		long cnt1 = 0;
		long LOOP = 400 * 7;
		long d = 0;
		for(int i = 1; i <= LOOP && 2014 + i <= n; i++) {
			d += isLeapYear(i + 2014) ? 2 : 1;
			if(d % 7 == 0) cnt1++;
			if(2014 + i == n) {
				return cnt1;
			}
		}
		
		long ans = (n - 2015) / LOOP * cnt1;
		d = d % 7 * (n - 2015) / LOOP % 7;

		for(long i = (n - 2015) / LOOP * LOOP + 2015; i <= n; i++) {
			d += isLeapYear(i) ? 2 : 1;
			if(d % 7 == 0) ans++;
		}
		
		return ans;
	}

	public static void main(String[] args) {
		/*
		for(int i = 2015; i <= 10000; i++) {
			int ans = 0;
			int d = 0;
			for(int j = 2015; j <= i; j++) {
				d += isLeapYear(j) ? 2 : 1;
				if(d % 7 == 0) ans++;
			}
			if(ans != func(i)) {
				System.err.println(i + " " + ans + " " + func(i));
			}
		}
		if(true) return;
		*/
		try(final Scanner sc = new Scanner(System.in)) {
			System.out.println(func(sc.nextLong()));
		}
	}

}
0