結果

問題 No.87 Advent Calendar Problem
ユーザー pluto77pluto77
提出日時 2016-04-30 11:09:23
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 1,087 ms
コンパイル使用メモリ 76,316 KB
実行使用メモリ 78,104 KB
最終ジャッジ日時 2024-10-04 23:55:18
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
77,864 KB
testcase_01 AC 249 ms
77,948 KB
testcase_02 AC 116 ms
77,604 KB
testcase_03 AC 64 ms
75,396 KB
testcase_04 AC 63 ms
75,408 KB
testcase_05 AC 64 ms
75,556 KB
testcase_06 AC 162 ms
77,712 KB
testcase_07 AC 207 ms
77,500 KB
testcase_08 AC 149 ms
78,104 KB
testcase_09 AC 190 ms
77,472 KB
testcase_10 AC 213 ms
77,312 KB
testcase_11 AC 258 ms
77,584 KB
testcase_12 AC 286 ms
77,572 KB
testcase_13 AC 233 ms
77,336 KB
testcase_14 AC 318 ms
77,496 KB
testcase_15 AC 170 ms
77,452 KB
testcase_16 AC 80 ms
77,424 KB
testcase_17 AC 64 ms
75,300 KB
testcase_18 AC 64 ms
75,512 KB
testcase_19 AC 65 ms
75,276 KB
testcase_20 AC 215 ms
77,820 KB
testcase_21 AC 195 ms
77,840 KB
testcase_22 AC 163 ms
77,760 KB
testcase_23 AC 136 ms
77,308 KB
testcase_24 AC 153 ms
77,584 KB
testcase_25 AC 103 ms
77,736 KB
testcase_26 AC 323 ms
77,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_87

def leap(y):
 if y%400==0:
  return True
 if y%100==0:
  return False
 if y%4==0:
  return True
 return False
 

n=int(raw_input())

x=0
y=2014
count=0
while y<=n:
 if y+400<=n:
  y+=400
  count+=57
 if x==0:
  count+=1
 if leap(y+1)==True:
  x+=2
 elif leap(y+1)==False:
  x+=1
 x%=7
 y+=1
 
print count -1
 
0