結果

問題 No.87 Advent Calendar Problem
ユーザー 0w10w1
提出日時 2016-11-28 14:27:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 166,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 14:34:24
合計ジャッジ時間 2,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

typedef long long ll;

int uru( int x ){
  if( x % 400 == 0 )
    return 1;
  if( x % 100 == 0 )
    return 0;
  return x % 4 == 0;
}

signed main(){
  ll N; cin >> N;
  ll ans = 0;
  for( int i = 1, z = 0; i <= 400; ++i )
    ( z += 365 + uru( 2014 + i ) ) %= 7,
    ans += z == 0;
  ans *= ( N - 2014 ) / 400;
  for( int i = 1, z = 0; i <= ( N - 2014 ) % 400; ++i )
    ( z += 365 + uru( 2014 + i ) ) %= 7,
    ans += z == 0;
  cout << ans << endl; 
  return 0;
}
0