結果
問題 |
No.87 Advent Calendar Problem
|
ユーザー |
|
提出日時 | 2015-09-18 02:57:20 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,043 bytes |
コンパイル時間 | 383 ms |
コンパイル使用メモリ | 59,792 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 06:54:30 |
合計ジャッジ時間 | 1,284 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 24 |
ソースコード
#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; cout << n_begin << endl; //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; }