結果

問題 No.87 Advent Calendar Problem
ユーザー nbisconbisco
提出日時 2017-01-15 22:19:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,384 KB
最終ジャッジ日時 2024-12-21 13:49:51
合計ジャッジ時間 133,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def is_leap(n):
    if n % 4 == 0 and n % 100 != 0 and n % 400 == 0:
        return True
    else:
        return False

# 2014/7/23(Wed)
N = int(input())

weds = 0
days = 0
for i in range(2014, N+1):
    if is_leap(i):
        days += 366
    else:
        days += 365
    if days % 7 == 0:
        weds += 1
print(weds)
0