結果

問題 No.87 Advent Calendar Problem
ユーザー kokoa1046
提出日時 2017-10-03 18:17:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 155 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-16 05:57:20
合計ジャッジ時間 133,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 TLE * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

from calendar import weekday

day=weekday(2014,7,23)
n= int(input())
cnt=0
for i in range(2015,n+1):
    if day==weekday(i,7,23):
        cnt+=1
print(cnt)
0