結果

問題 No.87 Advent Calendar Problem
ユーザー dangodango
提出日時 2023-06-13 20:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 180 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 53,856 KB
最終ジャッジ日時 2024-06-22 06:22:31
合計ジャッジ時間 2,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,620 KB
testcase_01 AC 35 ms
52,560 KB
testcase_02 AC 34 ms
52,548 KB
testcase_03 AC 35 ms
52,548 KB
testcase_04 AC 32 ms
53,212 KB
testcase_05 AC 33 ms
53,512 KB
testcase_06 AC 34 ms
52,884 KB
testcase_07 AC 33 ms
53,376 KB
testcase_08 AC 32 ms
53,384 KB
testcase_09 AC 32 ms
52,868 KB
testcase_10 AC 32 ms
52,012 KB
testcase_11 AC 33 ms
52,072 KB
testcase_12 AC 34 ms
52,344 KB
testcase_13 AC 33 ms
52,876 KB
testcase_14 AC 33 ms
53,856 KB
testcase_15 AC 33 ms
52,920 KB
testcase_16 AC 33 ms
52,864 KB
testcase_17 AC 34 ms
52,916 KB
testcase_18 AC 34 ms
52,564 KB
testcase_19 AC 33 ms
52,604 KB
testcase_20 AC 33 ms
52,088 KB
testcase_21 AC 34 ms
52,808 KB
testcase_22 AC 33 ms
53,344 KB
testcase_23 AC 34 ms
52,744 KB
testcase_24 AC 31 ms
52,600 KB
testcase_25 AC 31 ms
52,700 KB
testcase_26 AC 32 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input()) - 2014
C, ANS = 0, (N // 400) * 57
N %= 400
for i in range(15, 15 + N):
	C += (1 + (i % 400 == 0 or (i % 100 != 0 and i % 4 == 0)))
	ANS += (C % 7 == 0)
print(ANS)
0