結果

問題 No.2109 Special Week
ユーザー titan23titan23
提出日時 2022-10-28 21:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-07-06 00:22:28
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,568 KB
testcase_01 AC 52 ms
61,952 KB
testcase_02 AC 53 ms
61,440 KB
testcase_03 AC 53 ms
61,824 KB
testcase_04 AC 54 ms
61,696 KB
testcase_05 AC 52 ms
61,952 KB
testcase_06 AC 53 ms
61,696 KB
testcase_07 AC 56 ms
61,952 KB
testcase_08 AC 54 ms
61,952 KB
testcase_09 AC 54 ms
61,696 KB
testcase_10 AC 53 ms
61,568 KB
testcase_11 AC 54 ms
61,568 KB
testcase_12 AC 54 ms
61,952 KB
testcase_13 AC 52 ms
61,824 KB
testcase_14 AC 52 ms
61,568 KB
testcase_15 AC 54 ms
62,080 KB
testcase_16 AC 53 ms
62,208 KB
testcase_17 AC 54 ms
61,440 KB
testcase_18 AC 52 ms
61,952 KB
testcase_19 AC 51 ms
61,952 KB
testcase_20 AC 54 ms
61,440 KB
testcase_21 AC 58 ms
61,952 KB
testcase_22 AC 53 ms
61,696 KB
testcase_23 AC 53 ms
61,824 KB
testcase_24 AC 52 ms
61,952 KB
testcase_25 AC 53 ms
62,080 KB
testcase_26 AC 53 ms
61,568 KB
testcase_27 AC 55 ms
61,568 KB
testcase_28 AC 54 ms
61,952 KB
testcase_29 AC 52 ms
61,612 KB
testcase_30 AC 52 ms
61,568 KB
testcase_31 AC 52 ms
61,696 KB
testcase_32 AC 55 ms
61,952 KB
testcase_33 AC 55 ms
61,824 KB
testcase_34 AC 53 ms
61,696 KB
testcase_35 AC 53 ms
61,440 KB
testcase_36 AC 54 ms
61,952 KB
testcase_37 AC 53 ms
62,080 KB
testcase_38 AC 53 ms
62,208 KB
testcase_39 AC 54 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
import math, random
from bisect import bisect_right, bisect_left
from itertools import product, permutations, combinations, combinations_with_replacement 
from collections import deque, defaultdict, Counter
from heapq import heapify, heappush, heappop
from functools import lru_cache, reduce
inf = float('inf')
def error(*args, sep=' ', end='\n'):
  print(*args, sep=sep, end=end, file=sys.stderr)
def ltos(a, f=str, sep=' '):
  return sep.join(map(f, a))
# mod = 1000000007
# mod = 998244353
# sys.setrecursionlimit(10**6)

#  -----------------------  #


m, d, k = map(int, input().split())

a = []
for i in range(7):
  s = f'{str(m).zfill(2)}{str(d).zfill(2)}'
  a.extend(list(s))
  d += 1
  if m in {4,6,9,11}:
    if d == 31:
      m += 1
      d = 1
  elif m == 2:
    if d == 29:
      m += 1
      d = 1
  else:
    if d == 32:
      m += 1
      d = 1
  m %= 12
a = set(a)
print('Yes' if len(a) >= k else 'No')
0