結果
| 問題 |
No.87 Advent Calendar Problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-11 21:03:41 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 978 bytes |
| コンパイル時間 | 378 ms |
| コンパイル使用メモリ | 59,876 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 23:04:48 |
| 合計ジャッジ時間 | 1,225 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 10 |
ソースコード
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
using namespace std;
bool is_leap(int 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;
}
*/
int 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 (int i = n_begin; i <= n; i++) {
days = (days + diff + is_leap(i)) % 7;
if (days == 0) {
ans++;
}
}
cout << ans << endl;
return 0;
}