結果

問題 No.87 Advent Calendar Problem
ユーザー masamasa
提出日時 2015-09-18 02:58:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,018 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 61,848 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-26 12:25:34
合計ジャッジ時間 1,601 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;
bool is_leap(long long y) {
	return  y % 4 == 0 && (y % 100 > 0 || y % 400 == 0);
}

int main() {
	//2015≤N≤10000000000=10^10
	long long n;
	cin >> n;

	int diff = 365 % 7;
	long long ans = 0;
	int days = 0; //曜日


/*
	for (int i = 0; i < 400; i++) {
		if (i % 400 == 0) {
			printf("%5d, %d\n", i, days);
		}
		days = (days + diff + is_leap(i)) % 7;
	}
*/
	long long sameInLoop = 0;
	for (int i = 2015; i < 2415; i++) {
		days = (days + diff + is_leap(i)) % 7;
		if (days == 0) {
			sameInLoop++;
		}
	}

	long long n_loop = (n - 2015) / 400;
	ans = n_loop * sameInLoop;
	long long n_begin = 2015 + n_loop * 400;
	//2014年7月23日(水)に初めてのyukicoder no.1 として
	//2014/7/23を days = 0 として
	for (long long i = n_begin; i <= n; i++) {
// cout << i << endl;
		days = (days + diff + is_leap(i)) % 7;
		if (days == 0) {
			ans++;
		}
	}

	cout << ans << endl;
	return 0;
}
0