結果

問題 No.87 Advent Calendar Problem
ユーザー trineutrontrineutron
提出日時 2021-01-17 17:12:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 201,232 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-29 21:04:46
合計ジャッジ時間 119,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int64_t n;
    cin >> n;
    int64_t ans = 0;
    int d = 0;
    for (int i = 2015; i <= n; i++) {
        d++;
        if (i % 4 == 0) d++;
        if (i % 100 == 0) d--;
        if (i % 400 == 0) d++;
        d %= 7;
        if (d == 0) ans++;
    }
    cout << ans << endl;
}
0