結果

問題 No.87 Advent Calendar Problem
ユーザー rlangevinrlangevin
提出日時 2023-06-20 00:33:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 60,900 KB
最終ジャッジ日時 2024-06-27 11:46:34
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,912 KB
testcase_01 AC 44 ms
59,720 KB
testcase_02 AC 44 ms
59,968 KB
testcase_03 AC 43 ms
60,156 KB
testcase_04 AC 43 ms
60,640 KB
testcase_05 AC 44 ms
59,972 KB
testcase_06 AC 44 ms
60,192 KB
testcase_07 AC 44 ms
60,324 KB
testcase_08 AC 45 ms
60,688 KB
testcase_09 AC 45 ms
60,420 KB
testcase_10 AC 44 ms
60,324 KB
testcase_11 AC 45 ms
60,900 KB
testcase_12 AC 46 ms
60,368 KB
testcase_13 AC 44 ms
60,044 KB
testcase_14 AC 43 ms
59,500 KB
testcase_15 AC 44 ms
60,244 KB
testcase_16 AC 43 ms
59,800 KB
testcase_17 AC 42 ms
60,208 KB
testcase_18 AC 44 ms
59,376 KB
testcase_19 AC 45 ms
60,668 KB
testcase_20 AC 44 ms
60,740 KB
testcase_21 AC 43 ms
59,436 KB
testcase_22 AC 44 ms
60,596 KB
testcase_23 AC 44 ms
59,788 KB
testcase_24 AC 44 ms
59,980 KB
testcase_25 AC 42 ms
59,440 KB
testcase_26 AC 45 ms
60,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n):
    now = 0
    cnt = 0
    for i in range(2015, 2015 + n):
        if i % 400 == 0:
            now += 366 % 7
        elif i % 100 == 0:
            now += 365 % 7
        elif i % 4 == 0:
            now += 366 % 7
        else:
            now += 365 % 7
        now %= 7
        cnt += int(now == 0) 
    return cnt

N = int(input())
N -= 2014
print(f(2800) * (N // 2800) + f(N % 2800))
0