結果

問題 No.87 Advent Calendar Problem
ユーザー 👑 rin204rin204
提出日時 2022-07-14 13:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-06-25 20:39:36
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,680 KB
testcase_01 AC 49 ms
55,552 KB
testcase_02 AC 50 ms
55,296 KB
testcase_03 AC 48 ms
54,784 KB
testcase_04 AC 48 ms
55,168 KB
testcase_05 AC 50 ms
55,552 KB
testcase_06 AC 51 ms
55,552 KB
testcase_07 AC 53 ms
55,680 KB
testcase_08 AC 50 ms
55,808 KB
testcase_09 AC 49 ms
55,296 KB
testcase_10 AC 50 ms
55,680 KB
testcase_11 AC 47 ms
54,400 KB
testcase_12 AC 49 ms
54,912 KB
testcase_13 AC 49 ms
55,424 KB
testcase_14 AC 50 ms
55,680 KB
testcase_15 AC 51 ms
55,680 KB
testcase_16 AC 51 ms
55,680 KB
testcase_17 AC 50 ms
56,192 KB
testcase_18 AC 50 ms
55,168 KB
testcase_19 AC 53 ms
55,808 KB
testcase_20 AC 52 ms
56,064 KB
testcase_21 AC 50 ms
55,424 KB
testcase_22 AC 48 ms
54,912 KB
testcase_23 AC 49 ms
54,784 KB
testcase_24 AC 49 ms
54,912 KB
testcase_25 AC 51 ms
55,424 KB
testcase_26 AC 51 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

date = datetime.date(2014, 7, 23)
w = date.weekday()
n = int(input())
z = 0
for y in range(2015, 2415):
    date = datetime.date(y, 7, 23)
    if date.weekday() == w:
        z += 1
ans = (n - 2015) // 400 * z
n = (n - 2015) % 400 + 2015
for y in range(2015, n + 1):
    date = datetime.date(y, 7, 23)
    if date.weekday() == w:
        ans += 1
print(ans)
0