結果

問題 No.87 Advent Calendar Problem
ユーザー sugim48sugim48
提出日時 2014-12-07 00:36:37
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,278 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 75,676 KB
実行使用メモリ 11,980 KB
最終ジャッジ日時 2023-09-02 09:08:44
合計ジャッジ時間 12,984 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-9;

bool is_uruu(ll y) {
	if (y % 400 == 0) return true;
	if (y % 100 == 0) return false;
	if (y % 4 == 0) return true;
	return false;
}

int main() {
	int Y = 0, X = 0, K = 0;
	for (;;) {
		if (Y > 0 && Y % 400 == 0 && X == 0) break;
		if (X == 0) K++;
		X += is_uruu(Y + 1) ? 2 : 1;
		X %= 7;
		Y++;
	}
	Y *= 100; K *= 100;
	ll N; cin >> N;
	int x = 0; ll k = 0;
	for (ll y = 2014; y <= N;) {
		if (y % 400 == 0 && x == 0 && y + Y <= N) {
			k += K;
			y += Y;
		}
		else {
			if (x == 0) k++;
			x += is_uruu(y + 1) ? 2 : 1;
			x %= 7;
			y++;
		}
	}
	cout << k - 1 << endl;
}
0