結果

問題 No.87 Advent Calendar Problem
ユーザー kokoa1046kokoa1046
提出日時 2017-10-03 18:17:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 155 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-16 05:57:20
合計ジャッジ時間 133,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 31 ms
22,400 KB
testcase_04 AC 33 ms
22,272 KB
testcase_05 AC 33 ms
22,144 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 AC 30 ms
22,272 KB
testcase_18 AC 31 ms
18,340 KB
testcase_19 AC 39 ms
22,144 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

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