結果

問題 No.2109 Special Week
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-28 22:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 55,756 KB
最終ジャッジ日時 2024-07-06 01:16:34
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,472 KB
testcase_01 AC 37 ms
55,092 KB
testcase_02 AC 35 ms
54,060 KB
testcase_03 AC 35 ms
53,872 KB
testcase_04 AC 35 ms
54,800 KB
testcase_05 AC 35 ms
54,072 KB
testcase_06 AC 36 ms
54,436 KB
testcase_07 AC 34 ms
55,244 KB
testcase_08 AC 35 ms
54,696 KB
testcase_09 AC 34 ms
53,400 KB
testcase_10 AC 38 ms
54,012 KB
testcase_11 AC 35 ms
53,744 KB
testcase_12 AC 35 ms
53,880 KB
testcase_13 AC 34 ms
54,672 KB
testcase_14 AC 35 ms
53,548 KB
testcase_15 AC 36 ms
53,404 KB
testcase_16 AC 37 ms
54,108 KB
testcase_17 AC 39 ms
55,036 KB
testcase_18 AC 39 ms
54,208 KB
testcase_19 AC 36 ms
54,368 KB
testcase_20 AC 39 ms
55,504 KB
testcase_21 AC 36 ms
54,232 KB
testcase_22 AC 36 ms
54,748 KB
testcase_23 AC 34 ms
54,832 KB
testcase_24 AC 34 ms
54,408 KB
testcase_25 AC 35 ms
54,812 KB
testcase_26 AC 34 ms
54,188 KB
testcase_27 AC 34 ms
55,120 KB
testcase_28 AC 34 ms
54,168 KB
testcase_29 AC 35 ms
55,152 KB
testcase_30 AC 35 ms
55,116 KB
testcase_31 AC 34 ms
54,060 KB
testcase_32 AC 34 ms
54,120 KB
testcase_33 AC 35 ms
53,748 KB
testcase_34 AC 37 ms
54,628 KB
testcase_35 AC 34 ms
54,136 KB
testcase_36 AC 36 ms
54,808 KB
testcase_37 AC 35 ms
54,212 KB
testcase_38 AC 39 ms
54,188 KB
testcase_39 AC 36 ms
55,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime

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

today = datetime.date(2022,m,d)
ans = set()
for i in range(7):
    s = str(today).split("-")[1:]
    for x in "".join(s):
        ans.add(x)
    today = today + datetime.timedelta(days=1)
if len(ans) >= k:
    print("Yes")
else:
    print("No")
0